Files
bakery-ia/services/distribution/Dockerfile

49 lines
1.2 KiB
Docker
Raw Normal View History

2025-11-30 09:12:40 +01:00
# Distribution Service Dockerfile
# Stage 1: Copy shared libraries
FROM python:3.11-slim AS shared
WORKDIR /shared
COPY shared/ /shared/
# Stage 2: Main service
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies including OR-Tools dependencies
RUN apt-get update && apt-get install -y \
gcc \
curl \
postgresql-client \
build-essential \
git \
cmake \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY shared/requirements-tracing.txt /tmp/
COPY services/distribution/requirements.txt .
# Install Python dependencies
RUN pip install --no-cache-dir -r /tmp/requirements-tracing.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy shared libraries from the shared stage
COPY --from=shared /shared /app/shared
# Copy application code
COPY services/distribution/ .
# Add shared libraries to Python path
ENV PYTHONPATH="/app:/app/shared:${PYTHONPATH:-}"
ENV PYTHONUNBUFFERED=1
# Expose port
EXPOSE 8000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8000/health || exit 1
# Run application
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]