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