Skip to content

Commit

Permalink
Revert "feat: [NODE-1355] Upgrade build container to 24.04 (#1946)"
Browse files Browse the repository at this point in the history
This reverts commit 260f1cc excluding
container tags.
  • Loading branch information
Bownairo committed Dec 3, 2024
1 parent e247008 commit 22e24a6
Show file tree
Hide file tree
Showing 31 changed files with 2,535 additions and 831 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container-mirror-images.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"image": "library/ubuntu",
"repo": "docker.io",
"sha256": "77d57fd89366f7d16615794a5b53e124d742404e20f035c22032233f1826bd6a"
"sha256": "965fbcae990b0467ed5657caceaec165018ef44a4d2d46c7cdea80a9dff0d1ea"
},
{
"image": "library/ubuntu",
Expand Down
8 changes: 0 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,3 @@ repos:
language: system
always_run: true
verbose: true

- repo: https://github.com/ansible/ansible-lint.git
rev: v24.5.0
hooks:
- id: ansible-lint
always_run: false
files: (^|/)testnet/ansible/.+\.(yaml|yml)$
args: ['-i', 'testnet/ansible/.ansible-lint-ignore', 'testnet/ansible']
15 changes: 13 additions & 2 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -201,15 +201,15 @@ use_repo(oci, "minica", "minica_linux_amd64")
# used by rosetta image
oci.pull(
name = "rust_base",
image = "gcr.io/distroless/cc-debian12@sha256:3310655aac0d85eb9d579792387af1ff3eb7a1667823478be58020ab0e0d97a8",
image = "gcr.io/distroless/cc-debian11@sha256:8e94f031353596c3fc9db6a2499bcc82dacc40cb71e0703476f9fad41677efdf",
platforms = ["linux/amd64"],
)
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:77d57fd89366f7d16615794a5b53e124d742404e20f035c22032233f1826bd6a",
image = "ghcr.io/dfinity/ubuntu@sha256:965fbcae990b0467ed5657caceaec165018ef44a4d2d46c7cdea80a9dff0d1ea",
platforms = ["linux/amd64"],
)
use_repo(oci, "ubuntu_base", "ubuntu_base_linux_amd64")
Expand Down Expand Up @@ -248,6 +248,17 @@ bazel_dep(name = "rules_distroless", version = "0.3.8")

apt = use_extension("@rules_distroless//apt:extensions.bzl", "apt")

## Packageset based on an Ubuntu focal snapshot, see manifest file
## for details
## To update, comment out the `lock` field below and run:
## bazel run @focal//:lock
apt.install(
name = "focal",
lock = "//bazel:focal.lock.json",
manifest = "//bazel:focal.yaml",
)
use_repo(apt, "focal")

# Packageset based on an Ubuntu noble snapshot, see manifest file
# for details
# To update, comment out the `lock` field below and run:
Expand Down
Loading

0 comments on commit 22e24a6

Please sign in to comment.