CoolFace
Apppublic

LazyBoss/ML_RFA

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
Dockerfile18 linesDownload Raw Back to root
1# Use an official Python runtime as a parent image2FROM python:3.11-slim3# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker4# you will also find guides on how best to write your Dockerfile5 6 7WORKDIR ./8 9 10COPY requirements.txt requirements.txt11 12RUN pip install --no-cache-dir --upgrade -r requirements.txt13RUN pip install --upgrade numpy14 15 16COPY . .17 18CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]