# services/sales/Dockerfile FROM python:3.11-slim WORKDIR /app # Install system dependencies RUN apt-get update && apt-get install -y \ gcc \ g++ \ && rm -rf /var/lib/apt/lists/* # Copy requirements and install Python dependencies COPY services/sales/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy shared modules first COPY shared/ /app/shared/ # Copy application code COPY services/sales/app/ /app/app/ # Set Python path to include shared modules ENV PYTHONPATH=/app # Expose port EXPOSE 8000 # Health check HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \ CMD python -c "import requests; requests.get('http://localhost:8000/health', timeout=5)" || exit 1 # Run the application CMD ["python", "-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]