Files
foodplanner/Dockerfile
2025-09-27 09:38:57 -07:00

47 lines
1.2 KiB
Docker

# Multi-stage Dockerfile for FoodPlanner
# Build stage: Install dependencies
FROM python:3.11-slim AS builder
# Install system dependencies for building Python packages
RUN apt-get update && apt-get install -y \
build-essential \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements file
COPY requirements.txt .
# Install Python dependencies into a virtual environment
RUN python -m venv venv && \
. venv/bin/activate && \
pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Final stage: Copy application code and installed dependencies
FROM python:3.11-slim
# Install runtime dependencies (if any needed beyond Python base)
RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy the virtual environment from the builder stage
COPY --from=builder /app/venv /app/venv
# Activate the virtual environment
ENV PATH="/app/venv/bin:$PATH"
# Copy application code
COPY . .
# Expose port (as defined in main.py)
EXPOSE 8999
# Run the application with uvicorn
CMD ["uvicorn", "main:app", "--host", "0.0.0", "--port", "8999"]