Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
pecl: install yaml-2.2.4
  • Loading branch information
macbre authored Apr 2, 2025
commit 18f77fdd96f0121b16eb4791fc91da744d4d4cb1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ RUN docker-php-ext-install \
xsl

# install yaml extensions from PECL
# https://pecl.php.net/package/yaml/2.2.3
# https://pecl.php.net/package/yaml/2.2.4
RUN apk add --virtual build-deps autoconf gcc make g++ zlib-dev \
&& pecl channel-update pecl.php.net \
&& pecl install yaml-2.2.3 && docker-php-ext-enable yaml \
&& pecl install yaml-2.2.4 && docker-php-ext-enable yaml \
&& apk del build-deps

RUN which php; php -v; php -m; php -i | grep ini
Expand Down