Arvind2006's picture
Upload folder using huggingface_hub
421331a verified
raw
history blame contribute delete
251 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
# IMPORTANT: expose correct port
EXPOSE 7860
# CRITICAL: start FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]