From f9ce81fb7fa05e854bbdac7a180b267e2403e93c Mon Sep 17 00:00:00 2001 From: J0WI Date: Mon, 4 Mar 2024 21:50:47 +0000 Subject: Add FTP module back (#2152) (#2169) Signed-off-by: J0WI --- 26/apache/Dockerfile | 2 ++ 26/fpm-alpine/Dockerfile | 2 ++ 26/fpm/Dockerfile | 2 ++ 3 files changed, 6 insertions(+) (limited to '26') diff --git a/26/apache/Dockerfile b/26/apache/Dockerfile index 7c59ef34..8c11c63f 100644 --- a/26/apache/Dockerfile +++ b/26/apache/Dockerfile @@ -45,11 +45,13 @@ RUN set -ex; \ ; \ \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ + docker-php-ext-configure ftp --with-openssl-dir=/usr; \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \ docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \ docker-php-ext-install -j "$(nproc)" \ bcmath \ exif \ + ftp \ gd \ gmp \ intl \ diff --git a/26/fpm-alpine/Dockerfile b/26/fpm-alpine/Dockerfile index be623342..4c39c6be 100644 --- a/26/fpm-alpine/Dockerfile +++ b/26/fpm-alpine/Dockerfile @@ -36,11 +36,13 @@ RUN set -ex; \ postgresql-dev \ ; \ \ + docker-php-ext-configure ftp --with-openssl-dir=/usr; \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \ docker-php-ext-configure ldap; \ docker-php-ext-install -j "$(nproc)" \ bcmath \ exif \ + ftp \ gd \ gmp \ intl \ diff --git a/26/fpm/Dockerfile b/26/fpm/Dockerfile index 610034d3..31574108 100644 --- a/26/fpm/Dockerfile +++ b/26/fpm/Dockerfile @@ -45,11 +45,13 @@ RUN set -ex; \ ; \ \ debMultiarch="$(dpkg-architecture --query DEB_BUILD_MULTIARCH)"; \ + docker-php-ext-configure ftp --with-openssl-dir=/usr; \ docker-php-ext-configure gd --with-freetype --with-jpeg --with-webp; \ docker-php-ext-configure ldap --with-libdir="lib/$debMultiarch"; \ docker-php-ext-install -j "$(nproc)" \ bcmath \ exif \ + ftp \ gd \ gmp \ intl \ -- cgit v1.2.3