- Update backend Dockerfile with PostgreSQL deps and entrypoint - Add entrypoint.sh with db/redis wait and auto-migration - Add /ready endpoint for Kubernetes readiness probe - Enhance /health endpoint with database and Redis status - Update k8s deployment with PostgreSQL and Redis services - Add proper secrets management for database credentials - Update k8s readiness probe to use /ready endpoint
72 lines
1.8 KiB
Docker
72 lines
1.8 KiB
Docker
# Document Translation API - Backend Dockerfile
|
|
# Multi-stage build for optimized production image
|
|
|
|
FROM python:3.11-slim as builder
|
|
|
|
WORKDIR /app
|
|
|
|
# Install build dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
libmagic1 \
|
|
libpq-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy requirements first for better caching
|
|
COPY requirements.txt .
|
|
|
|
# Create virtual environment and install dependencies
|
|
RUN python -m venv /opt/venv
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
RUN pip install --no-cache-dir --upgrade pip && \
|
|
pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Production stage
|
|
FROM python:3.11-slim as production
|
|
|
|
WORKDIR /app
|
|
|
|
# Install runtime dependencies only
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
libmagic1 \
|
|
libpq5 \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& apt-get clean
|
|
|
|
# Copy virtual environment from builder
|
|
COPY --from=builder /opt/venv /opt/venv
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
|
|
# Create non-root user for security
|
|
RUN groupadd -r translator && useradd -r -g translator translator
|
|
|
|
# Create necessary directories
|
|
RUN mkdir -p /app/uploads /app/outputs /app/logs /app/temp \
|
|
&& chown -R translator:translator /app
|
|
|
|
# Copy application code
|
|
COPY --chown=translator:translator . .
|
|
|
|
# Make entrypoint executable
|
|
RUN chmod +x docker/backend/entrypoint.sh
|
|
|
|
# Switch to non-root user
|
|
USER translator
|
|
|
|
# Environment variables
|
|
ENV PYTHONUNBUFFERED=1 \
|
|
PYTHONDONTWRITEBYTECODE=1 \
|
|
PORT=8000 \
|
|
WORKERS=4
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
|
|
CMD curl -f http://localhost:${PORT}/health || exit 1
|
|
|
|
# Expose port
|
|
EXPOSE ${PORT}
|
|
|
|
# Use entrypoint script to handle migrations and startup
|
|
ENTRYPOINT ["docker/backend/entrypoint.sh"]
|