v0.3.5
Pre-release
Pre-release
Using Bzlmod with Bazel 6
- Enable with
common --enable_bzlmod
in.bazelrc
. - Add to your
MODULE.bazel
file:
bazel_dep(name = "rules_distroless", version = "0.3.5")
Using WORKSPACE
Paste this snippet into your file:
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "rules_distroless",
sha256 = "f6c47d040b7b7bf9f49890b92d4c905665b6dd78d730f36d3b2bc1d314704ea7",
strip_prefix = "rules_distroless-0.3.5",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.3.5/rules_distroless-v0.3.5.tar.gz",
)
######################
# rules_distroless setup #
######################
# Fetches the rules_distroless dependencies.
# If you want to have a different version of some dependency,
# you should fetch it *before* calling this.
# Alternatively, you can skip calling this function, so long as you've
# already fetched all the dependencies.
load("@rules_distroless//distroless:dependencies.bzl", "distroless_dependencies")
distroless_dependencies()
load("@rules_distroless//distroless:toolchains.bzl", "distroless_register_toolchains")
distroless_register_toolchains()
load("@rules_distroless//apt:index.bzl", "deb_index")
# bazel run @bullseye//:lock
deb_index(
name = "bullseye",
lock = "@@//:bullseye.lock.json",
manifest = "//:bullseye.yaml",
)
load("@bullseye//:packages.bzl", "bullseye_packages")
bullseye_packages()
What's Changed
- Return extension_metadata from apt extension by @mortenmj in #60
- Fail on manifest duplicate packages by @ericlchen1 in #61
- fix: auto-setting lock attribute on deb_index by @alexeagle in #63
- fix: apt.deb_index should work without a lock by @thesayyn in #70
New Contributors
- @ericlchen1 made their first contribution in #61
Full Changelog: v0.3.4...v0.3.5