flykite-model-backend / Dockerfile
SagarAtHf's picture
Upload folder using huggingface_hub
4238e8c verified
Raw
History Blame Contribute Delete
428 Bytes
FROM python:3.10-slim
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
# Grant full container workspace access permissions
RUN chmod -R 777 /code
# Hugging Face Docker Spaces run strictly on port 7860
#CMD ["uvicorn", "main.py", "--host", "0.0.0.0", "--port", "7860"]
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]