LazyBoss/ML_RFA1
0
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.txt13 14COPY . .15 16CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]