Skip to content
Merged
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
2 changes: 1 addition & 1 deletion runtime/base/php-73.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

FROM bref/tmp/step-1/build-environment as build-environment

ENV VERSION_PHP=7.3.24
ENV VERSION_PHP=7.3.25

ENV PHP_BUILD_DIR=${BUILD_DIR}/php
RUN set -xe; \
Expand Down
2 changes: 1 addition & 1 deletion runtime/base/php-74.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN set -xe; \
make install


ENV VERSION_PHP=7.4.12
ENV VERSION_PHP=7.4.13


ENV PHP_BUILD_DIR=${BUILD_DIR}/php
Expand Down
4 changes: 2 additions & 2 deletions runtime/base/php-80.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN set -xe; \
make install


ENV VERSION_PHP=8.0.0RC5
ENV VERSION_PHP=8.0.0


ENV PHP_BUILD_DIR=${BUILD_DIR}/php
Expand All @@ -46,7 +46,7 @@ RUN set -xe; \
# --location will follow redirects
# --silent will hide the progress, but also the errors: we restore error messages with --show-error
# --fail makes sure that curl returns an error instead of fetching the 404 page
curl --location --silent --show-error --fail https://downloads.php.net/~carusogabriel/php-${VERSION_PHP}.tar.gz \
curl --location --silent --show-error --fail https://www.php.net/get/php-${VERSION_PHP}.tar.gz/from/this/mirror \
| tar xzC ${PHP_BUILD_DIR} --strip-components=1
# Move into the unpackaged code directory
WORKDIR ${PHP_BUILD_DIR}/
Expand Down