Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run/helloworld/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# Use the official PHP image.
# https://hub.docker.com/_/php
FROM php:8.4-apache
FROM php:8.5-apache

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

The selected PHP Docker image tag php:8.5-apache does not appear to exist, as PHP 8.5 has not yet been released. This will cause the Docker build to fail when it's unable to pull the base image. Please use a valid and existing PHP image tag. Reverting to the previous tag would resolve this issue.

FROM php:8.4-apache


# Configure PHP for Cloud Run.
# Precompile PHP code with opcache.
Expand Down
Loading