cbensimon's picture
cbensimon HF staff
Create Dockerfile
6e8b6c6
raw
history blame
136 Bytes
FROM python:3.10
RUN pip install fastapi[standard]
COPY --link . .
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]