FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ gcc \ && rm -rf /var/lib/apt/lists/* # Copy project files COPY pyproject.toml . COPY app/ app/ COPY migrations/ migrations/ # Install Python dependencies RUN pip install --no-cache-dir . # Create data directory for SQLite RUN mkdir -p /app/data # Expose port EXPOSE 8000 # Run with uvicorn CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]