Fixes
Build - Docker Image - PROD / publish (push) Has been cancelled

This commit is contained in:
JonatanRek
2026-02-03 09:22:25 +01:00
parent 305aa9c83d
commit 7461f0a25e
2 changed files with 20 additions and 16 deletions
+14 -15
View File
@@ -38,21 +38,20 @@ RUN apk add --no-cache --virtual .build-deps \
libxml2-dev \
linux-headers
RUN docker-php-ext-configure gd \
--with-freetype \
--with-jpeg \
&& docker-php-ext-install -j$(nproc) \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
bcmath \
soap \
gd \
intl \
opcache \
sockets \
pcntl
RUN docker-php-ext-configure \
gd --with-freetype --with-jpeg \
&& docker-php-ext-install -j$(nproc) \
pdo_mysql \
pdo_pgsql \
pgsql \
zip \
bcmath \
soap \
gd \
intl \
opcache \
sockets \
pcntl
RUN pecl install imagick \
&& docker-php-ext-enable imagick