CoolFace
Apppublic

unknownf331/test2

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.10.52 3WORKDIR /code4 5COPY ./requirements.txt /code/requirements.txt6 7RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt8 9COPY . .10 11CMD ["gunicorn", "-b", "0.0.0.0:7860", "server:app"]