From 51e9616c85be071737acf64e1b81df2a92caea5d Mon Sep 17 00:00:00 2001 From: Adam Ross Date: Thu, 21 Mar 2019 09:48:57 -0700 Subject: [PATCH] serving/sample/helloworld-php: fix container build error from upstream (#1035) --- docs/serving/samples/hello-world/helloworld-php/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/serving/samples/hello-world/helloworld-php/Dockerfile b/docs/serving/samples/hello-world/helloworld-php/Dockerfile index 7e65dbf1c..5afb185fe 100644 --- a/docs/serving/samples/hello-world/helloworld-php/Dockerfile +++ b/docs/serving/samples/hello-world/helloworld-php/Dockerfile @@ -1,6 +1,6 @@ # Use the official PHP 7.2 image. # https://hub.docker.com/_/php -FROM php:7.2.6-apache +FROM php:7.2-apache # Copy local code to the container image. COPY index.php /var/www/html/