Image-Upscaler / Dockerfile
Avanish11's picture
Update Dockerfile
2038618 verified
Raw
History Blame Contribute Delete
315 Bytes
FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y \
wget \
ffmpeg \
libgl1 \
libglib2.0-0
COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]