Update fcgi tests to Trixie

This commit is contained in:
J0WI 2025-08-29 00:16:36 +02:00
parent 4b8154aab8
commit 5d3e8126d8
1 changed files with 2 additions and 2 deletions

View File

@ -8,9 +8,9 @@ image="$1"
# Build a client image with cgi-fcgi for testing
clientImage='librarytest/matomo-fpm-run:fcgi-client'
docker build -t "$clientImage" - > /dev/null <<'EOF'
FROM debian:bookworm-slim
FROM debian:trixie-slim
RUN set -x && apt-get update && apt-get install -y --no-install-recommends libfcgi-bin && rm -rf /var/lib/apt/lists/*
RUN set -x && apt-get update && apt-get install -y --no-install-recommends libfcgi-bin && apt-get dist-clean
ENTRYPOINT ["cgi-fcgi"]
EOF