-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
245 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
"Public API re-exports" | ||
|
||
load("//distroless/private:cacerts.bzl", _cacerts = "cacerts") | ||
load("//distroless/private:locale.bzl", _locale = "locale") | ||
|
||
cacerts = _cacerts | ||
locale = _locale |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
"locale" | ||
|
||
load(":tar.bzl", "tar_lib") | ||
|
||
_DOC = """Create a ca-certificates.crt bundle from Common CA certificates. | ||
When provided with the `ca-certificates` Debian package it will create a bundle | ||
of all common CA certificates at `/usr/share/ca-certificates` and bundle them into | ||
a `ca-certificates.crt` file at `/etc/ssl/certs/ca-certificates.crt` | ||
An example of this would be | ||
```starlark | ||
# MODULE.bazel | ||
http_archive = use_repo_rule("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") | ||
http_archive( | ||
name = "ca-certificates", | ||
type = ".deb", | ||
canonical_id = "test", | ||
sha256 = "b2d488ad4d8d8adb3ba319fc9cb2cf9909fc42cb82ad239a26c570a2e749c389", | ||
urls = ["https://snapshot.debian.org/archive/debian/20231106T210201Z/pool/main/c/ca-certificates/ca-certificates_20210119_all.deb"], | ||
build_file_content = "exports_files(["data.tar.xz"])" | ||
) | ||
# BUILD.bazel | ||
load("@rules_distroless//distroless:defs.bzl", "locale") | ||
locale( | ||
name = "example", | ||
package = "@ca-certificates//:data.tar.xz", | ||
) | ||
``` | ||
""" | ||
|
||
def _locale_impl(ctx): | ||
bsdtar = ctx.toolchains[tar_lib.TOOLCHAIN_TYPE] | ||
|
||
output = ctx.actions.declare_file(ctx.attr.name + ".tar.gz") | ||
|
||
args = ctx.actions.args() | ||
args.add("--create") | ||
args.add("--gzip") | ||
args.add("--file", output) | ||
args.add("--include", "^./usr/$") | ||
args.add("--include", "^./usr/lib/$") | ||
args.add("--include", "^./usr/lib/locale/$") | ||
args.add("--include", "./usr/lib/locale/%s" % ctx.attr.charset) | ||
args.add("--include", "^./usr/share/$") | ||
args.add("--include", "^./usr/share/doc/$") | ||
args.add("--include", "^./usr/share/doc/libc-bin/$") | ||
args.add("--include", "^./usr/share/doc/libc-bin/copyright$") | ||
args.add(ctx.file.package, format = "@%s") | ||
|
||
ctx.actions.run( | ||
executable = bsdtar.tarinfo.binary, | ||
inputs = [ctx.file.package], | ||
outputs = [output], | ||
tools = bsdtar.default.files, | ||
arguments = [args], | ||
) | ||
return [ | ||
DefaultInfo(files = depset([output])), | ||
] | ||
|
||
locale = rule( | ||
doc = _DOC, | ||
attrs = { | ||
"package": attr.label( | ||
allow_single_file = [".tar.xz", ".tar.gz", ".tar"], | ||
mandatory = True, | ||
), | ||
"charset": attr.string( | ||
default = "C.utf8", | ||
), | ||
}, | ||
implementation = _locale_impl, | ||
toolchains = [tar_lib.TOOLCHAIN_TYPE], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
load("//distroless:defs.bzl", "locale") | ||
load("//distroless/tests:asserts.bzl", "assert_tar_listing") | ||
|
||
locale( | ||
name = "bullseye", | ||
charset = "C.UTF-8", | ||
package = "@bullseye-libc-bin//:data.tar.xz", | ||
) | ||
|
||
assert_tar_listing( | ||
name = "test_bullseye", | ||
actual = "bullseye", | ||
expected = """\ | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/ | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/lib/ | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/lib/locale/ | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/ | ||
-rw-r--r-- 0 root root 131 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_ADDRESS | ||
-rw-r--r-- 0 root root 1519554 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_COLLATE | ||
-rw-r--r-- 0 root root 346132 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_CTYPE | ||
-rw-r--r-- 0 root root 252 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_IDENTIFICATION | ||
-rw-r--r-- 0 root root 23 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_MEASUREMENT | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_MESSAGES/ | ||
-rw-r--r-- 0 root root 48 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_MESSAGES/SYS_LC_MESSAGES | ||
-rw-r--r-- 0 root root 270 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_MONETARY | ||
-rw-r--r-- 0 root root 62 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_NAME | ||
-rw-r--r-- 0 root root 50 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_NUMERIC | ||
-rw-r--r-- 0 root root 34 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_PAPER | ||
-rw-r--r-- 0 root root 47 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_TELEPHONE | ||
-rw-r--r-- 0 root root 3360 Oct 2 13:22 ./usr/lib/locale/C.UTF-8/LC_TIME | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/share/ | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/share/doc/ | ||
drwxr-xr-x 0 root root 0 Oct 2 13:22 ./usr/share/doc/libc-bin/ | ||
-rw-r--r-- 0 root root 25467 Sep 22 2022 ./usr/share/doc/libc-bin/copyright | ||
""", | ||
) | ||
|
||
locale( | ||
name = "bookworm", | ||
package = "@bookworm-libc-bin//:data.tar.xz", | ||
) | ||
|
||
assert_tar_listing( | ||
name = "test_bookworm", | ||
actual = "bookworm", | ||
expected = """\ | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/ | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/lib/ | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/lib/locale/ | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/lib/locale/C.utf8/ | ||
-rw-r--r-- 0 root root 127 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_ADDRESS | ||
-rw-r--r-- 0 root root 1406 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_COLLATE | ||
-rw-r--r-- 0 root root 353616 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_CTYPE | ||
-rw-r--r-- 0 root root 258 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_IDENTIFICATION | ||
-rw-r--r-- 0 root root 23 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_MEASUREMENT | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_MESSAGES/ | ||
-rw-r--r-- 0 root root 48 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_MESSAGES/SYS_LC_MESSAGES | ||
-rw-r--r-- 0 root root 270 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_MONETARY | ||
-rw-r--r-- 0 root root 62 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_NAME | ||
-rw-r--r-- 0 root root 50 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_NUMERIC | ||
-rw-r--r-- 0 root root 34 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_PAPER | ||
-rw-r--r-- 0 root root 47 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_TELEPHONE | ||
-rw-r--r-- 0 root root 3360 Sep 30 01:31 ./usr/lib/locale/C.utf8/LC_TIME | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/share/ | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/share/doc/ | ||
drwxr-xr-x 0 root root 0 Sep 30 01:31 ./usr/share/doc/libc-bin/ | ||
-rw-r--r-- 0 root root 25467 Sep 22 2022 ./usr/share/doc/libc-bin/copyright | ||
""", | ||
) |