Skip to content

Commit

Permalink
upgrade Composer in latest images
Browse files Browse the repository at this point in the history
  • Loading branch information
deminy committed Apr 28, 2023
1 parent 2ab3d2c commit 0e6494a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ php:
- "8.2"
image:
composer:
version: "2.5.2"
version: "2.5.5"
inotify: true
php_extensions:
redis:
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nightly/php8.0/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN \
set -ex && \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update --clean-backups 2.5.2 && \
composer self-update --clean-backups 2.5.5 && \
apk update && \
apk add --no-cache libstdc++ libpq && \
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev postgresql-dev openssl-dev pcre-dev pcre2-dev zlib-dev && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nightly/php8.0/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN \
set -ex && \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update 2.5.2 && \
composer self-update 2.5.5 && \
apt-get update && \
apt-get install -y \
# The auto-reloading feature is supported for non-Alpine images only.
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nightly/php8.1/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN \
set -ex && \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update --clean-backups 2.5.2 && \
composer self-update --clean-backups 2.5.5 && \
apk update && \
apk add --no-cache libstdc++ libpq && \
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev postgresql-dev openssl-dev pcre-dev pcre2-dev zlib-dev && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nightly/php8.1/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN \
set -ex && \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update 2.5.2 && \
composer self-update 2.5.5 && \
apt-get update && \
apt-get install -y \
# The auto-reloading feature is supported for non-Alpine images only.
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nightly/php8.2/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN \
set -ex && \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update --clean-backups 2.5.2 && \
composer self-update --clean-backups 2.5.5 && \
apk update && \
apk add --no-cache libstdc++ libpq && \
apk add --no-cache --virtual .build-deps $PHPIZE_DEPS curl-dev linux-headers postgresql-dev openssl-dev pcre-dev pcre2-dev zlib-dev && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/nightly/php8.2/cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN \
set -ex && \
curl -sfL https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer && \
chmod +x /usr/bin/composer && \
composer self-update 2.5.2 && \
composer self-update 2.5.5 && \
apt-get update && \
apt-get install -y \
# The auto-reloading feature is supported for non-Alpine images only.
Expand Down

0 comments on commit 0e6494a

Please sign in to comment.