CoolFace
Apppublic

vinuka/leafsecurehost

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile11 linesDownload Raw Back to root
1FROM python:3.10.112WORKDIR /code3 4COPY ./requirements.txt /code/requirements.txt5 6RUN pip install --no-cache-dir -r /code/requirements.txt7 8COPY . .9 10CMD ["gunicorn", "-b", "0.0.0.0:7860", "sever:app"]11