From 0f8c482db632d375004c46502c62bbbcb36cddd1 Mon Sep 17 00:00:00 2001 From: Eero Kelly Date: Thu, 7 Nov 2024 16:09:25 +0000 Subject: [PATCH] Leave old container for now --- .github/workflows/container-mirror-images.json | 5 +++++ MODULE.bazel | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/.github/workflows/container-mirror-images.json b/.github/workflows/container-mirror-images.json index 7bca6e6ad9d..e7a20c59bad 100644 --- a/.github/workflows/container-mirror-images.json +++ b/.github/workflows/container-mirror-images.json @@ -1,5 +1,10 @@ { "images": [ + { + "image": "library/ubuntu", + "repo": "docker.io", + "sha256": "965fbcae990b0467ed5657caceaec165018ef44a4d2d46c7cdea80a9dff0d1ea" + }, { "image": "library/ubuntu", "repo": "docker.io", diff --git a/MODULE.bazel b/MODULE.bazel index 234e75252c6..191099c6403 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -194,6 +194,14 @@ oci.pull( ) use_repo(oci, "rust_base", "rust_base_linux_amd64") +# used in various places as base +oci.pull( + name = "ubuntu_base", + image = "ghcr.io/dfinity/ubuntu@sha256:965fbcae990b0467ed5657caceaec165018ef44a4d2d46c7cdea80a9dff0d1ea", + platforms = ["linux/amd64"], +) +use_repo(oci, "ubuntu_base", "ubuntu_base_linux_amd64") + # used by boundary node tests oci.pull( name = "coredns",