Tesseract OCR + 70 Debian packages + pip dependencies are now in a separate base image (klausur-base:latest) that is built once and reused. A --no-cache build now only rebuilds the code layer (~seconds) instead of re-downloading 33 MB of system packages (~9 minutes). Rebuild base when requirements.txt or system deps change: docker build -f klausur-service/Dockerfile.base -t klausur-base:latest klausur-service/ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
717 B
Docker
25 lines
717 B
Docker
# Base image with system dependencies + Python packages.
|
|
# These change rarely — build once, reuse on every --no-cache.
|
|
#
|
|
# Rebuild manually when requirements.txt or system deps change:
|
|
# docker build -f klausur-service/Dockerfile.base -t klausur-base:latest klausur-service/
|
|
#
|
|
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# System dependencies (Tesseract OCR, curl for healthcheck)
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
curl \
|
|
tesseract-ocr \
|
|
tesseract-ocr-deu \
|
|
tesseract-ocr-eng \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Python dependencies
|
|
COPY backend/requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Clean up pip cache
|
|
RUN rm -rf /root/.cache/pip
|