Updated dockerfile om migrations uit te kunnen voeren

This commit is contained in:
Frank
2026-01-09 14:41:59 +01:00
parent 3604c63940
commit 14871336a3

View File

@@ -6,6 +6,7 @@ RUN apk add --no-cache \
git \ git \
icu-dev \ icu-dev \
libzip-dev \ libzip-dev \
libxml2-dev \
oniguruma-dev \ oniguruma-dev \
g++ \ g++ \
make \ make \
@@ -14,7 +15,7 @@ RUN apk add --no-cache \
# Install PHP extensions # Install PHP extensions
RUN docker-php-ext-configure intl \ RUN docker-php-ext-configure intl \
&& docker-php-ext-install -j$(nproc) intl pdo pdo_mysql opcache zip && docker-php-ext-install -j$(nproc) intl pdo pdo_mysql opcache zip xml dom simplexml
# Install composer # Install composer
ENV COMPOSER_ALLOW_SUPERUSER=1 \ ENV COMPOSER_ALLOW_SUPERUSER=1 \