Skip to content

Commit

Permalink
Updated 8.1 and 8.2 Dockerfiles to fix an issue with the intl.so modu…
Browse files Browse the repository at this point in the history
…le not finding its dependencies.
  • Loading branch information
MarkoTukiainen committed Jun 5, 2023
1 parent d4781e5 commit 3a87d1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions 8.1.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ RUN \
#
# php extensions
&& docker-php-source extract \
&& rm -f /usr/local/lib/php/extensions/no-debug-non-zts-20210902/intl.so /usr/local/etc/php/conf.d/docker-php-ext-intl.ini \
&& pecl channel-update pecl.php.net \
&& { php -m | grep gd || docker-php-ext-configure gd --with-freetype --with-jpeg --enable-gd; } \
&& docker-php-ext-install-if $PHP_EXTENSIONS \
Expand Down
1 change: 1 addition & 0 deletions 8.2.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ RUN \
#
# php extensions
&& docker-php-source extract \
&& rm -f /usr/local/lib/php/extensions/no-debug-non-zts-20220829/intl.so /usr/local/etc/php/conf.d/docker-php-ext-intl.ini \
&& pecl channel-update pecl.php.net \
&& { php -m | grep gd || docker-php-ext-configure gd --with-freetype --with-jpeg --enable-gd; } \
&& docker-php-ext-install-if $PHP_EXTENSIONS \
Expand Down

0 comments on commit 3a87d1f

Please sign in to comment.