This repository was archived by the owner on Oct 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ #syntax=docker/dockerfile:1.4.3
2
+
3
+ ARG ref=main
4
+ FROM ghcr.io/nicholasdille/docker-setup/base:${ref} AS prepare
5
+
6
+ ARG name
7
+ ARG version
8
+
9
+ RUN <<EOF
10
+ curl --silent --location --output "${prefix}${target}/bin/bom" \
11
+ "https://github.com/kubernetes-sigs/bom/releases/download/v${version}/bom-linux-${alt_arch}"
12
+ chmod +x "${prefix}${target}/bin/bom"
13
+ "${prefix}${target}/bin/bom" completion bash >"${prefix}${target}/share/bash-completion/completions/bom"
14
+ "${prefix}${target}/bin/bom" completion fish >"${prefix}${target}/share/fish/vendor_completions.d/bom.fish"
15
+ "${prefix}${target}/bin/bom" completion zsh >"${prefix}${target}/share/zsh/vendor-completions/_bom"
16
+ EOF
Original file line number Diff line number Diff line change
1
+ name : bom
2
+ version : 0.4.1
3
+ check : ${binary} version 2>&1 | grep ^GitVersion | tr -d ' ' | cut -d':' -f2 | tr -d v
4
+ tags :
5
+ - category/security
6
+ - sbom
7
+ - cicd
8
+ - lang/go
9
+ homepage : https://github.com/kubernetes-sigs/bom
10
+ description : generate SPDX-compliant Bill of Materials manifests
11
+ renovate :
12
+ datasource : github-releases
13
+ package : kubernetes-sigs/bom
14
+ extractVersion : ^v(?<version>.+?)$
You can’t perform that action at this time.
0 commit comments