aihd-upscaler / Dockerfile
tomz616's picture
Create Dockerfile
de43576 verified
raw
history blame contribute delete
272 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y \
ffmpeg \
libgl1 \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]