File size: 461 Bytes
2efd55d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Use Python 3.9 as the base image
FROM python:3.9
# Set the working directory inside the container
WORKDIR /app
# Copy the requirements file and install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the entire project into the container
COPY . .
# Expose port 7860 (same as FastAPI runs on)
EXPOSE 7860
# Command to run FastAPI on startup
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|