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