Update php Docker tag to v8.3.6

This commit is contained in:
renovate[bot] 2024-04-23 23:11:12 +00:00 committed by GitHub
parent c7b48f1816
commit 3f5dbdab33
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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