Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FTP ext to PHP 8.2 and 8.3 #367

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions images/php/8.2-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ENV MAGENTO_RUN_MODE production
ENV SENDMAIL_PATH /dev/null
ENV PHPRC ${MAGENTO_ROOT}/php.ini

ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl
ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl ftp

# Configure Node.js version
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash
Expand Down Expand Up @@ -114,7 +114,8 @@ RUN docker-php-ext-install -j$(nproc) \
tidy \
xsl \
zip \
pcntl
pcntl \
ftp

RUN pecl install -o -f \
gnupg \
Expand Down
5 changes: 3 additions & 2 deletions images/php/8.2-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENV UPLOAD_MAX_FILESIZE 64M
ENV SENDMAIL_PATH /dev/null
ENV PHPRC ${MAGENTO_ROOT}/php.ini

ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl
ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl ftp

# Install dependencies
RUN apt-get update \
Expand Down Expand Up @@ -89,7 +89,8 @@ RUN docker-php-ext-install -j$(nproc) \
tidy \
xsl \
zip \
pcntl
pcntl \
ftp

RUN pecl install -o -f \
gnupg \
Expand Down
5 changes: 3 additions & 2 deletions images/php/8.3-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ENV MAGENTO_RUN_MODE production
ENV SENDMAIL_PATH /dev/null
ENV PHPRC ${MAGENTO_ROOT}/php.ini

ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl
ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl ftp

# Configure Node.js version
RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash
Expand Down Expand Up @@ -114,7 +114,8 @@ RUN docker-php-ext-install -j$(nproc) \
tidy \
xsl \
zip \
pcntl
pcntl \
ftp

RUN pecl install -o -f \
gnupg \
Expand Down
5 changes: 3 additions & 2 deletions images/php/8.3-fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ENV UPLOAD_MAX_FILESIZE 64M
ENV SENDMAIL_PATH /dev/null
ENV PHPRC ${MAGENTO_ROOT}/php.ini

ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl
ENV PHP_EXTENSIONS bcmath bz2 calendar exif gd gettext intl mysqli opcache pdo_mysql redis soap sockets sodium sysvmsg sysvsem sysvshm xsl zip pcntl ftp

# Install dependencies
RUN apt-get update \
Expand Down Expand Up @@ -89,7 +89,8 @@ RUN docker-php-ext-install -j$(nproc) \
tidy \
xsl \
zip \
pcntl
pcntl \
ftp

RUN pecl install -o -f \
gnupg \
Expand Down