Spaces:
Running
Running
File size: 408 Bytes
638561d c3eddbf 638561d fa16e11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # ---------- Backend Dockerfile ----------
# Use lightweight Python image
FROM python:3.13-slim
# Set working directory
WORKDIR /app
# Copy dependency files
COPY requirements.txt .
# Install dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Copy source code
COPY . .
# Expose FastAPI port
EXPOSE 8000
# Run FastAPI app
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]
|