gitextract_vcjsnv1p/ ├── .bazelignore ├── .bazelrc ├── .bazelversion ├── .cloudbuild/ │ ├── cloudbuild.yaml │ ├── lifecycle_tag.sh │ ├── lifecycle_tag.yaml │ └── release.sh ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── actionable-debian-cve.md │ │ ├── actionable-non-debian-cve.md │ │ └── bug_report.md │ ├── dependabot.yml │ └── workflows/ │ ├── buildifier.yaml │ ├── check-ldconfig.yaml │ ├── ci.bazelrc │ ├── ci.yaml │ ├── config-diff.yaml │ ├── examples.yaml │ ├── image-check.yaml │ ├── scorecards-analysis.yml │ ├── update-deb-package-non-snapshots.yml │ ├── update-deb-package-snapshots.yml │ └── update-node-archives.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── BUILD ├── CONTRIBUTING.md ├── LICENSE ├── MODULE.bazel ├── PACKAGE_METADATA.md ├── README.md ├── RELEASES.md ├── SECURITY.md ├── SUPPORT_POLICY.md ├── WORKSPACE ├── base/ │ ├── BUILD │ ├── README.md │ ├── base.bzl │ ├── config.bzl │ ├── test.sh │ └── testdata/ │ ├── base.yaml │ └── debug.yaml ├── cc/ │ ├── BUILD │ ├── README.md │ ├── cc.bzl │ └── config.bzl ├── common/ │ ├── BUILD.bazel │ └── variables.bzl ├── cosign.pub ├── distro.bzl ├── downloader.cfg ├── examples/ │ ├── BUILD │ ├── cc/ │ │ ├── BUILD │ │ ├── Dockerfile │ │ ├── hello.c │ │ ├── hello_cc.cc │ │ └── testdata/ │ │ ├── hello_cc_debian12.yaml │ │ ├── hello_cc_debian13.yaml │ │ ├── hello_debian12.yaml │ │ └── hello_debian13.yaml │ ├── go/ │ │ ├── BUILD │ │ ├── Dockerfile │ │ ├── go.mod │ │ ├── main.go │ │ └── main_test.go │ ├── java/ │ │ ├── BUILD │ │ ├── Dockerfile │ │ ├── HelloJava.java │ │ └── testdata/ │ │ ├── hello_nonroot_debian13.yaml │ │ └── hello_root_debian13.yaml │ ├── nodejs/ │ │ ├── BUILD │ │ ├── Dockerfile │ │ ├── hello.js │ │ ├── hello_http.js │ │ ├── node-express/ │ │ │ ├── Dockerfile │ │ │ ├── hello_express.js │ │ │ └── package.json │ │ ├── package.json │ │ └── testdata/ │ │ └── hello.yaml │ ├── nonroot/ │ │ ├── BUILD │ │ └── testdata/ │ │ ├── user.go │ │ └── user.yaml │ ├── python3/ │ │ ├── BUILD │ │ ├── Dockerfile │ │ └── hello.py │ ├── python3-requirements/ │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── psutil_example.py │ │ └── requirements.txt │ ├── rust/ │ │ ├── .dockerignore │ │ ├── BUILD │ │ ├── Cargo.toml │ │ ├── Dockerfile │ │ └── src/ │ │ └── main.rs │ └── test.sh ├── experimental/ │ ├── BUILD │ └── busybox/ │ ├── BUILD │ └── commands.bzl ├── java/ │ ├── BUILD │ ├── README.md │ ├── config.bzl │ ├── control │ ├── java.bzl │ ├── jre_ver.bzl │ └── testdata/ │ ├── CheckCerts.java │ ├── CheckEncoding.java │ ├── CheckLibharfbuzz.java │ ├── java17_debian13.yaml │ ├── java17_debug_debian13.yaml │ ├── java21_debian13.yaml │ ├── java21_debug_debian13.yaml │ ├── java25_debian13.yaml │ ├── java25_debug_debian13.yaml │ ├── java_base.yaml │ ├── java_base_debug.yaml │ ├── java_certs.yaml │ ├── java_encoding.yaml │ └── java_libharfbuzz.yaml ├── knife ├── knife.d/ │ ├── update_java_versions.sh │ └── update_node_archives.js ├── nodejs/ │ ├── BUILD │ ├── README.md │ ├── config.bzl │ ├── control │ ├── nodejs.bzl │ └── testdata/ │ ├── check_certificate.js │ ├── check_certificate.yaml │ ├── check_headers.yaml │ ├── check_npm.yaml │ ├── nodejs20.yaml │ ├── nodejs22.yaml │ └── nodejs24.yaml ├── private/ │ ├── extensions/ │ │ ├── BUILD.bazel │ │ ├── busybox.bzl │ │ ├── node.bzl │ │ └── version.bzl │ ├── oci/ │ │ ├── BUILD.bazel │ │ ├── cc_image.bzl │ │ ├── defs.bzl │ │ ├── digest.bzl │ │ ├── go_image.bzl │ │ ├── java_image.bzl │ │ ├── rust_image.bzl │ │ ├── sign_and_push.bzl │ │ └── sign_and_push.sh.tpl │ ├── pkg/ │ │ ├── BUILD.bazel │ │ ├── debian_spdx.bzl │ │ ├── debian_spdx.go │ │ ├── oci_image_spdx.bzl │ │ ├── oci_image_spdx.go │ │ └── test/ │ │ └── oci_image/ │ │ ├── BUILD.bazel │ │ ├── fat_image_sbom.spdx.json │ │ ├── image_amd64.spdx.json │ │ └── image_arm64.spdx.json │ ├── repos/ │ │ └── deb/ │ │ ├── BUILD.bazel │ │ ├── bookworm.lock.json │ │ ├── bookworm.yaml │ │ ├── bookworm_python.lock.json │ │ ├── bookworm_python.yaml │ │ ├── deb.MODULE.bazel │ │ ├── package.BUILD.tmpl │ │ ├── trixie.lock.json │ │ ├── trixie.yaml │ │ ├── trixie_adoptium.lock.json │ │ ├── trixie_adoptium.yaml │ │ ├── trixie_java.lock.json │ │ ├── trixie_java.yaml │ │ ├── trixie_python.lock.json │ │ └── trixie_python.yaml │ ├── stamp.bash │ ├── tools/ │ │ ├── diff/ │ │ │ ├── BUILD.bazel │ │ │ └── diff.bash │ │ └── lifecycle/ │ │ ├── BUILD.bazel │ │ ├── defs.bzl │ │ ├── tag.bzl │ │ ├── tag.sh │ │ └── tag.sh.README.md │ └── util/ │ ├── BUILD │ ├── deb.bzl │ ├── extract.bzl │ ├── java_cacerts.bzl │ ├── merge_providers.bzl │ └── tar.bzl ├── python3/ │ ├── BUILD │ ├── README.md │ ├── config.bzl │ ├── ldconfig/ │ │ ├── ld.so.cache.amd64 │ │ ├── ld.so.cache.arm64 │ │ └── ldconfig.sh │ ├── ldconfig.bzl │ ├── python.bzl │ └── testdata/ │ ├── debian12.yaml │ ├── debian13.yaml │ └── python3.yaml └── static/ ├── BUILD ├── config.bzl ├── nsswitch.conf ├── static.bzl └── testdata/ ├── check_certs.go ├── debian12.yaml ├── debian13.yaml ├── debug.yaml └── static.yaml