From b21c05178e2966ca241d447b8b71b36f2d89360f Mon Sep 17 00:00:00 2001 From: Javier Maestro Date: Tue, 23 Jul 2024 14:32:09 +0100 Subject: [PATCH] Add pointer to the official Dockerfile config It's nice to be able to find the Dockerfile for any image easily, so I'm just adding the link to the "Getting Started with Bazel Docker Container" doc. Maybe it was probably me not knowing how to navigate the Container Registry website but I couldn't find the Dockerfile for the official images. In fact, it was a bit confusing because, while googling, I did find some old versions of the website that pointed to an old registry with very old images! Luckily, trying to find what was going on, I found [bazelbuild/continuous-integration issue #1060](https://github.com/bazelbuild/continuous-integration/issues/1060) and from there, I found the Dockerfile for the official image. --- site/en/install/docker-container.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/site/en/install/docker-container.md b/site/en/install/docker-container.md index 9158ee30ca7355..575de26ce8fa56 100644 --- a/site/en/install/docker-container.md +++ b/site/en/install/docker-container.md @@ -130,3 +130,7 @@ Build time: Fri Jun 2 16:59:58 2023 (1685725198) Build timestamp: 1685725198 Build timestamp as int: 1685725198 ``` + +## Explore the Bazel Dockerfile {:#explore-bazel-dockerfile} + +If you want to check how the Bazel Docker image is built, you can find its Dockerfile at [bazelbuild/continuous-integration/bazel/oci](https://github.com/bazelbuild/continuous-integration/tree/master/bazel/oci).