File size: 619 Bytes
81d8c42 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # Use an official lightweight Python image
FROM python:3.10-slim
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements file into the container
COPY backend/requirements.txt /app/backend/requirements.txt
# Install the dependencies
RUN pip install --no-cache-dir -r/app/backend/requirements.txt
# Copy the entire directory into the container
COPY . /app
# Expose the correct port (Hugging Face Spaces uses 7860 by default, change if needed)
EXPOSE 7860
# Command to run the FastAPI application using uvicorn
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860"]
|