# Stage 1: Frontend bauen FROM node:20-alpine AS frontend WORKDIR /build COPY frontend/package.json frontend/package-lock.json ./ RUN npm install COPY frontend/ ./ RUN npm run build # Stage 2: Runtime FROM python:3.12-slim RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ ca-certificates \ gnupg \ poppler-utils \ tesseract-ocr \ tesseract-ocr-deu \ tesseract-ocr-eng \ && curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y nodejs \ && npm install -g @anthropic-ai/claude-code opencode-ai \ && pip install --no-cache-dir uv \ && rm -rf /var/lib/apt/lists/* RUN useradd -m -u 1000 app COPY backend/requirements.txt /app/backend/requirements.txt # torch als CPU-Build (~190 MB) — eigener Index, sonst zieht pip die CUDA-Variante (~2,5 GB). # Fürs Lesbarkeits-Gate (transformers nutzt das vorhandene torch). RUN pip install --no-cache-dir torch --index-url https://download.pytorch.org/whl/cpu \ && pip install --no-cache-dir -r /app/backend/requirements.txt # Chromium + OS-Libs für Playwright (als root) in ein gemeinsames, welt-lesbares Verzeichnis. ENV PLAYWRIGHT_BROWSERS_PATH=/ms-playwright RUN python3 -m playwright install --with-deps chromium \ && chmod -R a+rX /ms-playwright COPY --chown=app:app backend/ /app/backend/ COPY --chown=app:app templates/ /app/templates/ COPY --chown=app:app --from=frontend /build/dist /app/frontend/dist COPY --chown=app:app dev-ops/opencode.json /home/app/.config/opencode/opencode.json RUN chown app:app /app USER app WORKDIR /app/backend CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]