Files
bakery-ia/services/orchestrator/Dockerfile

45 lines
1.1 KiB
Docker
Raw Normal View History

2025-10-30 21:08:07 +01:00
# Orchestrator Service Dockerfile
# Stage 1: Copy shared libraries
2026-01-19 11:55:17 +01:00
FROM localhost:5000/python_3.11-slim AS shared
2025-10-30 21:08:07 +01:00
WORKDIR /shared
COPY shared/ /shared/
# Stage 2: Main service
2026-01-19 11:55:17 +01:00
FROM localhost:5000/python_3.11-slim
2025-10-30 21:08:07 +01:00
WORKDIR /app
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
curl \
&& rm -rf /var/lib/apt/lists/*
# Copy requirements
COPY shared/requirements-tracing.txt /tmp/
COPY services/orchestrator/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/orchestrator/ .
# 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"]