File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ RUN apk update && apk upgrade && apk add --no-cache \
6363# Configure and install PHP extensions
6464RUN ln -s /usr/lib/$(apk --print-arch)-linux-gnu/libXpm.* /usr/lib/ && \
6565 docker-php-ext-configure gd --with-webp --with-jpeg --with-xpm --with-freetype --enable-gd-jis-conv && \
66- docker-php-ext-install -j$(nproc) gd gettext gmp bcmath exif intl pdo pdo_mysql pcntl zip ftp
66+ docker-php-ext-install -j$(nproc) gd gettext gmp bcmath exif intl pdo pdo_mysql pcntl zip
6767
6868RUN docker-php-ext-configure imap --with-kerberos --with-imap-ssl && \
6969 docker-php-ext-install -j$(nproc) imap
@@ -74,6 +74,9 @@ RUN pecl install imagick && \
7474RUN pecl install --force redis && \
7575 docker-php-ext-enable redis
7676
77+ # Install FTP extension
78+ RUN docker-php-ext-install ftp
79+
7780# Compile and install FFmpeg with libfdk-aac support
7881RUN git clone --depth 1 https://git.ffmpeg.org/ffmpeg.git /ffmpeg && \
7982 cd /ffmpeg && \
You can’t perform that action at this time.
0 commit comments