Releases: GoogleContainerTools/rules_distroless
Releases · GoogleContainerTools/rules_distroless
v0.3.0
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.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 = "26ef24dcbefe9630e88fe773201ff4149798e4e482bf166c9e6de063c687e6a1",
strip_prefix = "rules_distroless-0.3.0",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.3.0/rules_distroless-v0.3.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", "distroless_dependencies")
distroless_dependencies()
What's Changed
Full Changelog: v0.2.1...v0.3.0
v0.2.1
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.2.1")
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 = "26114c00e7a5aab87bc12660820264c00b00a07ad13966fdedbffd1e112e6b7d",
strip_prefix = "rules_distroless-0.2.1",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.2.1/rules_distroless-v0.2.1.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()
What's Changed
- fix: add /etc folder by @thesayyn in #24
- fix: make locale and java_keystore match by @thesayyn in #25
- chore: upgrade bazel-lib by @thesayyn in #26
Full Changelog: v0.2.0...v0.2.1
v0.2.0
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.2.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 = "4b6d6a4bd03431f4f680ff5f6feea0b8ccf52c0296a12818d2c9595392e45543",
strip_prefix = "rules_distroless-0.2.0",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.2.0/rules_distroless-v0.2.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", "distroless_dependencies")
distroless_dependencies()
What's Changed
Full Changelog: v0.1.7...v0.2.0
v0.1.8
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.8")
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 = "beb4f74795a73c2429edb517f47260fe9cd38a7ef9518fd3a94f95e47eb2c6cf",
strip_prefix = "rules_distroless-0.1.8",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.8/rules_distroless-v0.1.8.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
Full Changelog: v0.1.6...v0.1.8
v0.1.7
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.7")
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 = "70e409dbf48dc7e9a08f681ba75d2931813385f4ff639b2cdc079337a3c11c99",
strip_prefix = "rules_distroless-0.1.7",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.7/rules_distroless-v0.1.7.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
Full Changelog: v0.1.6...v0.1.7
v0.1.6
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.6")
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 = "08eeee56f857da3bb6f77d67f8246a1c4d50764debfbc8802a198f3997a3ae7c",
strip_prefix = "rules_distroless-0.1.6",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.6/rules_distroless-v0.1.6.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
Full Changelog: v0.1.5...v0.1.6
v0.1.5
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
v0.1.4
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.4")
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 = "bd149dae18f49ed8a17e1e36b7888215944097174496ed98bdbdba0dedba7496",
strip_prefix = "rules_distroless-0.1.4",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.4/rules_distroless-v0.1.4.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
- Update rules_distroless_dependencies to match bazel module version by @prestonvanloon in #14
New Contributors
- @prestonvanloon made their first contribution in #14
Full Changelog: v0.1.3...v0.1.4
v0.1.3
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.3")
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 = "a3692f952915960c6fa125caa9126935bc402c2f521d775ccb1f62e3142a7cc4",
strip_prefix = "rules_distroless-0.1.3",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.3/rules_distroless-v0.1.3.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
- feat: implement java_keystore by @thesayyn in #9
- feat: implement home by @thesayyn in #10
- refactor: set mtime to 0 by @thesayyn in #11
- feat: implement flatten rule by @thesayyn in #12
Full Changelog: v0.1.1...v0.1.3
v0.1.2
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.2")
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 = "ac23c7c09ccaa6c53a74ef2056cbd82800a9e2f36c7b2b1f5cef5fd2d82baf7b",
strip_prefix = "rules_distroless-0.1.2",
url = "https://github.com/GoogleContainerTools/rules_distroless/releases/download/v0.1.2/rules_distroless-v0.1.2.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
Full Changelog: v0.1.0...v0.1.2