From 21818bd89d81aca255c3a8bdf54cbdf5703b6153 Mon Sep 17 00:00:00 2001 From: "C.J. Collier" Date: Thu, 9 Jan 2025 13:20:31 -0800 Subject: [PATCH] including libtemplate-perl as a dependency --- cloudbuild/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloudbuild/Dockerfile b/cloudbuild/Dockerfile index aebaffd84..644219305 100644 --- a/cloudbuild/Dockerfile +++ b/cloudbuild/Dockerfile @@ -22,7 +22,8 @@ RUN /usr/bin/curl -s https://bazel.build/bazel-release.pub.gpg | \ dd of="${bazel_repo_file}" status=none && \ apt-get update -qq RUN apt-get autoremove -y -qq > /dev/null 2>&1 && \ - apt-get install -y -qq default-jdk python3-setuptools bazel-${bazel_version} > /dev/null 2>&1 && \ + apt-get install -y -qq default-jdk python3-setuptools bazel-${bazel_version} \ + libtemplate-perl > /dev/null 2>&1 && \ apt-get clean # Set bazel-${bazel_version} as the default bazel alternative in this container