- Multi-stage Dockerfile with gunicorn, non-root user, healthcheck - Structured JSON logging with request ID propagation - Redis-based rate limiting middleware (sliding window) - Security headers middleware (X-Frame-Options, CSP, XSS protection) - Global exception handler hiding stack traces in production - Disable /docs /redoc in production mode - CORS hardened to explicit methods/headers - TrustedHostMiddleware support - Health endpoints: /health returns 503 on degraded, /health/live for liveness - Frontend static export (output: 'export') for Apache serving - docker-compose.prod.yml with resource limits, pinned images, celery-worker - deploy.sh: full pipeline (git pull → build → up → frontend → copy to /var/www) - Cloud Run worker: Dockerfile.worker, cloudbuild.yaml, deploy script (optical-414516) - Celery hardened: task time limits, healthcheck task, configurable concurrency - Admin panel improvements, system prompts, AD group sync Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
34 lines
864 B
Text
34 lines
864 B
Text
# === Builder stage ===
|
|
FROM python:3.11-slim AS builder
|
|
|
|
WORKDIR /build
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
libpq-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir --prefix=/install -r requirements.txt
|
|
|
|
# === Runtime stage ===
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
postgresql-client \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=builder /install /usr/local
|
|
|
|
RUN groupadd -r nexus && useradd -r -g nexus -d /app -s /sbin/nologin nexus
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir -p /app/uploads && chown -R nexus:nexus /app
|
|
|
|
USER nexus
|
|
|
|
# No port exposed — this is a worker, not a web server
|
|
CMD ["celery", "-A", "celery_app", "worker", "--loglevel=info", "--queues=sharepoint,default", "--concurrency=2"]
|