v0.1.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.1.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 = "fb2600b7a674a64382ec9863ea2a1bc60f7b7391e1ba6f86bfbd0d5c24beb918",
strip_prefix = "rules_distroless-0.1.5",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.5/rules_distroless-v0.1.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", "rules_distroless_dependencies")
rules_distroless_dependencies()
What's Changed
- fix: match rules_docker modes by @thesayyn in #17
- Create SECURITY.md by @loosebazooka in #18
New Contributors
- @loosebazooka made their first contribution in #18
Full Changelog: v0.1.4...v0.1.5