python alpine base image for image creation

This commit is contained in:
Andre Beging
2025-10-09 11:16:32 +02:00
parent a29ce99420
commit 5c22415ab4
2 changed files with 9 additions and 10 deletions

View File

@@ -1,17 +1,16 @@
# Multi-stage für kleinere finale Imagegröße # Alpine-basiertes Image für kleinere Größe
FROM python:3.12-slim AS base FROM python:3.12-alpine AS base
ENV PYTHONDONTWRITEBYTECODE=1 \ ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \ PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 PIP_NO_CACHE_DIR=1
# System deps (tzdata optional falls benötigt) # Systemabhängigkeiten installieren (su-exec für Rechtewechsel)
RUN apt-get update && apt-get install -y --no-install-recommends \ RUN apk add --no-cache ca-certificates su-exec
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# Non-root user # Non-root user
RUN useradd -u 10001 -m appuser RUN addgroup -S appgroup \
&& adduser -S -G appgroup -u 10001 appuser
WORKDIR /app WORKDIR /app

View File

@@ -4,13 +4,13 @@ set -e
# If running as root, fix ownership of /data, then drop privileges # If running as root, fix ownership of /data, then drop privileges
if [ "$(id -u)" = "0" ]; then if [ "$(id -u)" = "0" ]; then
mkdir -p /data mkdir -p /data
chown -R appuser:appuser /data || echo "Warn: could not chown /data" chown -R appuser:appgroup /data || echo "Warn: could not chown /data"
# Copy example config only if missing target # Copy example config only if missing target
if [ ! -f /app/config.yaml ] && [ -f /app/config.example.yaml ]; then if [ ! -f /app/config.yaml ] && [ -f /app/config.example.yaml ]; then
cp /app/config.example.yaml /app/config.yaml cp /app/config.example.yaml /app/config.yaml
chown appuser:appuser /app/config.yaml || true chown appuser:appgroup /app/config.yaml || true
fi fi
exec su -s /bin/sh appuser -c "$*" exec su-exec appuser "$@"
else else
exec "$@" exec "$@"
fi fi