Version 9b #1

Merged
Lars merged 34 commits from develop into main 2026-03-19 08:04:02 +01:00
Showing only changes of commit ec3c279e11 - Show all commits

View File

@ -1,5 +1,10 @@
FROM python:3.12-slim
# Use German mirror for better connectivity and add retry logic
RUN echo "deb http://ftp.de.debian.org/debian bookworm main" > /etc/apt/sources.list && \
echo "deb http://ftp.de.debian.org/debian bookworm-updates main" >> /etc/apt/sources.list && \
echo "Acquire::Retries \"3\";" > /etc/apt/apt.conf.d/80-retries
# Install PostgreSQL client for psql (needed for startup.sh)
RUN apt-get update && apt-get install -y postgresql-client && rm -rf /var/lib/apt/lists/*