v0.1.0
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.0")
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 = "86738afb79dac5d6aed3ed32fcb5dac79c05fa6d61c4ee3a207ab5a0521975e8",
strip_prefix = "rules_distroless-0.1.0",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.0/rules_distroless-v0.1.0.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
- chore: copy files from the contrib templates by @thesayyn in #4
- feat: port cacerts rule by @thesayyn in #5
- feat: port locale rule by @thesayyn in #6
New Contributors
Full Changelog: https://github.com/GoogleContainerTools/rules_distroless/commits/v0.1.0