From 07de0df36f6cbecc0dbe74a4288da30c37af2702 Mon Sep 17 00:00:00 2001 From: Matthias Hemmerich Date: Fri, 23 Jun 2023 13:59:01 +0200 Subject: [PATCH] bump to php82 --- Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 929d772..0b1a3e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,19 +6,20 @@ LABEL Description="Forked from https://github.com/TrafeX/docker-php-nginx, Light WORKDIR /var/www/html # Install packages and remove default server definition -RUN apk add --no-cache \ +RUN apk update \ + && apk add --no-cache \ curl \ nginx \ - php8 \ - php8-fpm \ + php82 \ + php82-fpm \ supervisor # Configure nginx COPY config/nginx.conf /etc/nginx/nginx.conf # Configure PHP-FPM -COPY config/fpm-pool.conf /etc/php8/php-fpm.d/www.conf -COPY config/php.ini /etc/php8/conf.d/custom.ini +COPY config/fpm-pool.conf /etc/php82/php-fpm.d/www.conf +COPY config/php.ini /etc/php82/conf.d/custom.ini # Configure supervisord COPY config/supervisord.conf /etc/supervisor/conf.d/supervisord.conf