Spaces:
Runtime error
Runtime error
File size: 559 Bytes
96027bb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Use the official Python 3.10 image
FROM python:3.10
# Set the working directory
WORKDIR /code
# Copy the requirements file and install dependencies
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# Copy the project files
COPY ./engine /code/engine
COPY ./static /code/static
COPY ./main.py /code/main.py
# Hugging Face Spaces require Docker apps to expose port 7860
EXPOSE 7860
# Command to run the FastAPI application
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|