From 9b91636145c789cbeb389829a9ac734d6bd2bc83 Mon Sep 17 00:00:00 2001 From: Adam Ross Date: Thu, 21 Mar 2019 09:48:48 -0700 Subject: [PATCH] serving/samples/helloworld-kotlin: pin gradle to known working version (#1030) --- docs/serving/samples/hello-world/helloworld-kotlin/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/serving/samples/hello-world/helloworld-kotlin/Dockerfile b/docs/serving/samples/hello-world/helloworld-kotlin/Dockerfile index df8e96e32..6cb717365 100644 --- a/docs/serving/samples/hello-world/helloworld-kotlin/Dockerfile +++ b/docs/serving/samples/hello-world/helloworld-kotlin/Dockerfile @@ -1,6 +1,6 @@ # Use the official gradle image to create a build artifact. # https://hub.docker.com/_/gradle -FROM gradle as builder +FROM gradle:4.10 as builder # Copy local code to the container image. COPY build.gradle .