From 3f5dbdab33ccacf90618d683119fc6d2df1a4e62 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 23:11:12 +0000 Subject: [PATCH] Update php Docker tag to v8.3.6 --- backend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 66c18ea..42f315c 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build PHP app and install dependencies -FROM php:8.3.4 AS builder +FROM php:8.3.6 AS builder WORKDIR /app @@ -16,7 +16,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local RUN COMPOSER_ALLOW_SUPERUSER=1 composer install --no-dev --optimize-autoloader # Stage 2: Serve the application using Apache PHP -FROM php:8.3.4-apache +FROM php:8.3.6-apache # Copy the built PHP app from the builder stage COPY --from=builder /app /var/www/html