tag
Some checks failed
Build and Deploy to k3s / build-and-deploy (push) Failing after 1m22s

This commit is contained in:
Alexis Bruneteau 2025-06-05 04:21:05 +02:00
parent ce256eb0b2
commit 7850dfedc8

View File

@ -52,6 +52,20 @@ RUN apk --no-cache add pcre-dev ${PHPIZE_DEPS} \
&& apk del pcre-dev ${PHPIZE_DEPS} \ && apk del pcre-dev ${PHPIZE_DEPS} \
&& rm -rf /tmp/pear && rm -rf /tmp/pear
RUN apk add --no-cache \
python3 \
py3-pip \
build-base \
libffi-dev \
openssl-dev \
python3-dev \
rust \
cargo \
&& pip3 install --upgrade pip \
&& pip3 install ansible \
&& apk del build-base rust cargo
# Install PHP extensions # Install PHP extensions
RUN docker-php-ext-configure gd --with-freetype --with-jpeg && \ RUN docker-php-ext-configure gd --with-freetype --with-jpeg && \
docker-php-ext-install pdo pdo_mysql mbstring gd xml docker-php-ext-install pdo pdo_mysql mbstring gd xml