From 10eace44d7761daa0758bc4f87095bb1ebc02e2a Mon Sep 17 00:00:00 2001 From: groot Date: Sat, 3 May 2025 23:06:01 +0000 Subject: [PATCH] Dockerfile aktualisiert --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bf1ad51..00006e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,6 +9,7 @@ RUN git clone --depth 1 https://github.com/bludit/bludit.git . FROM alpine:3.21 # Install only needed runtime packages +RUN apk update && apk upgrade RUN apk add --no-cache bash nginx \ php84 php84-fpm php84-opcache php84-gd php84-zlib php84-curl php84-bz2 php84-bcmath \ php84-exif php84-fileinfo php84-iconv php84-imap php84-intl php84-ldap php84-mbstring \ @@ -18,7 +19,7 @@ RUN apk add --no-cache bash nginx \ php84-pecl-ssh2 php84-pecl-xdebug php84-pecl-yaml php84-pgsql php84-phar php84-phpdbg \ php84-session php84-simplexml php84-snmp php84-soap php84-sockets php84-sodium \ php84-sqlite3 php84-sysvmsg php84-tidy php84-xml php84-xmlreader php84-xmlwriter \ - php84-xsl php84-zip php84-ctype php84-tokenizerphp84 php84-fpm php84-opcache php84-mysqli php84-session php84-xml php84-curl + php84-xsl php84-zip php84-ctype php84-tokenizerphp84 # Add unprivileged user RUN addgroup -S appgroup && adduser -S appuser -G appgroup