Dockerfile aktualisiert
Some checks failed
release-tag / release-image (push) Failing after 39s

This commit is contained in:
2025-05-03 23:06:01 +00:00
parent 5423437e09
commit 10eace44d7

View File

@@ -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