CoolFace
Apppublic

master-frog/doc

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
0likes
Dockerfile15 linesDownload Raw Back to root
1# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker2# you will also find guides on how best to write your Dockerfile3 4FROM python:3.75 6WORKDIR /code7 8COPY . /code9 10RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt11 12COPY . .13 14# Run app.py when the container launches15CMD ["python", "manage.py", "runserver", "0.0.0.0:7860"]