From 7850dfedc84d3aab9408c3d6653ae91ba6a3fe95 Mon Sep 17 00:00:00 2001 From: Alexis Bruneteau Date: Thu, 5 Jun 2025 04:21:05 +0200 Subject: [PATCH] tag --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7cd3bf9..459436a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,6 +52,20 @@ RUN apk --no-cache add pcre-dev ${PHPIZE_DEPS} \ && apk del pcre-dev ${PHPIZE_DEPS} \ && 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 RUN docker-php-ext-configure gd --with-freetype --with-jpeg && \ docker-php-ext-install pdo pdo_mysql mbstring gd xml