API-0 / Dockerfile
Yuchan5386's picture
Update Dockerfile
9e0873c verified
raw
history blame contribute delete
176 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install fastapi uvicorn requests huggingface_hub numpy
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]