This commit is contained in:
Alexandre
2023-01-07 10:42:59 +01:00
committed by GitHub
parent d5e0168021
commit 729eb9f9bc

View File

@@ -41,35 +41,36 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# Setup base # Setup base
# hadolint ignore=DL3003 # hadolint ignore=DL3003
# Install app dependencies # Install app dependencies
ARG PHPVERS="php81"
RUN apk -U update && \ RUN apk -U update && \
# hadolint ignore=DL3017 # hadolint ignore=DL3017
apk -U upgrade && \ apk -U upgrade && \
apk -U add --no-cache \ apk -U add --no-cache \
git \ git \
nginx \ nginx \
php8 \ $PHPVERS \
php8-fpm \ $PHPVERS-fpm \
php8-curl \ $PHPVERS-curl \
php8-dom \ $PHPVERS-dom \
php8-gettext \ $PHPVERS-gettext \
php8-xml \ $PHPVERS-xml \
php8-simplexml \ $PHPVERS-simplexml \
php8-zip \ $PHPVERS-zip \
php8-zlib \ $PHPVERS-zlib \
php8-gd \ $PHPVERS-gd \
php8-openssl \ $PHPVERS-openssl \
php8-mysqli \ $PHPVERS-mysqli \
php8-pdo \ $PHPVERS-pdo \
php8-pdo_mysql \ $PHPVERS-pdo_mysql \
php8-pgsql \ $PHPVERS-pgsql \
php8-pdo_pgsql \ $PHPVERS-pdo_pgsql \
php8-sqlite3 \ $PHPVERS-sqlite3 \
php8-pdo_sqlite \ $PHPVERS-pdo_sqlite \
php8-json \ $PHPVERS-json \
php8-mbstring \ $PHPVERS-mbstring \
php8-ctype \ $PHPVERS-ctype \
php8-opcache \ $PHPVERS-opcache \
php8-session \ $PHPVERS-session \
mariadb-client \ mariadb-client \
\ \
&& mkdir -p /app \ && mkdir -p /app \