Update PHP version

This commit is contained in:
2024-05-29 15:59:11 -05:00
parent 32f411cd48
commit 6b810a5036

View File

@@ -1,6 +1,6 @@
FROM alpine AS base
ENV PHP_VER="php81" \
ENV PHP_VER="php83" \
PHPFPM_VER="php-fpm81" \
NODE_OPTIONS=--openssl-legacy-provider
@@ -37,7 +37,7 @@ RUN apk --no-cache add \
/run/nginx \
/run/php-fpm && \
ln -s /etc/${PHP_VER} /etc/php && \
ln -s /usr/bin/${PHP_VER} /usr/bin/php && \
# ln -s /usr/bin/${PHP_VER} /usr/bin/php && \
ln -s /usr/sbin/${PHPFPM_VER} /usr/sbin/php-fpm
FROM base AS build