CoolFace
Apppublic

SstudizeSA/panicButtonB2Buppal

sourceHugging Faceapache-2.0updated 2y 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.95 6WORKDIR /code7 8COPY ./requirements.txt /code/requirements.txt9 10RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt11 12COPY . .13 14CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]15