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