diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2021-12-17 17:57:00 +0300 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2021-12-17 17:57:00 +0300 |
commit | 78c0f6c9124e06ec66f470c121724b3910e6c563 (patch) | |
tree | c462e65ac54910110f68b3fa795c175649f145d1 /pkg/docker | |
parent | 06dd656146ef7031ca3128920d02933fbf673463 (diff) | |
download | unit-78c0f6c9124e06ec66f470c121724b3910e6c563.tar.gz unit-78c0f6c9124e06ec66f470c121724b3910e6c563.tar.bz2 |
Generated Dockerfile for PHP 8.1.
Diffstat (limited to '')
-rw-r--r-- | pkg/docker/Dockerfile.php8.1 (renamed from pkg/docker/Dockerfile.php8.0) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/docker/Dockerfile.php8.0 b/pkg/docker/Dockerfile.php8.1 index 07290b74..43f4bb03 100644 --- a/pkg/docker/Dockerfile.php8.0 +++ b/pkg/docker/Dockerfile.php8.1 @@ -1,4 +1,4 @@ -FROM php:8.0-cli as BUILDER +FROM php:8.1-cli as BUILDER LABEL maintainer="NGINX Docker Maintainers <docker-maint@nginx.com>" @@ -40,7 +40,7 @@ RUN set -ex \ && make -j $NCPU php-install \ && ldd /usr/sbin/unitd | awk '/=>/{print $(NF-1)}' | while read n; do dpkg-query -S $n; done | sed 's/^\([^:]\+\):.*$/\1/' | sort | uniq > /requirements.apt -FROM php:8.0-cli +FROM php:8.1-cli COPY docker-entrypoint.sh /usr/local/bin/ COPY --from=BUILDER /usr/sbin/unitd /usr/sbin/unitd COPY --from=BUILDER /usr/sbin/unitd-debug /usr/sbin/unitd-debug |