From ee66c8232aaa74fe2e524e86914e1a914f3eb154 Mon Sep 17 00:00:00 2001 From: cobalt-github-releaser-bot <95661244+cobalt-github-releaser-bot@users.noreply.github.com> Date: Wed, 10 Apr 2024 15:22:54 -0700 Subject: [PATCH] Cherry pick PR #2884: Fix Docsite generation script (#2890) Refer to the original PR: https://github.com/youtube/cobalt/pull/2884 The CA certificates won't install by default, making subsequent curl fail. Also a test commit to validate CI migration. b/236404667 b/327428751 Co-authored-by: Kaido Kert --- cobalt/site/docker/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cobalt/site/docker/Dockerfile b/cobalt/site/docker/Dockerfile index b22bc09b5aa9..1acba94d9995 100644 --- a/cobalt/site/docker/Dockerfile +++ b/cobalt/site/docker/Dockerfile @@ -13,11 +13,12 @@ # limitations under the License. ARG FROM_IMAGE -FROM ${FROM_IMAGE:-gcr.io/cloud-marketplace-containers/google/debian10} +FROM ${FROM_IMAGE:-gcr.io/cloud-marketplace-containers/google/debian11} RUN apt update -qqy \ && apt install -qqy --no-install-recommends \ curl \ + ca-certificates \ doxygen \ git \ python3 \