CoolFace
Apppublic

doublelotus/Removal

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.92 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9RUN apt-get update && apt-get install ffmpeg libsm6 libxext6  -y10 11COPY . .12 13CMD ["gunicorn", "-b", "0.0.0.0:7860", "main:app"]