File size: 331 Bytes
824c85b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Base image
FROM python:3.11-slim
# Set work directory
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Expose FastAPI app
EXPOSE 8000
# Start FastAPI server
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "8000"]
|