Skip to content

Commit c61a928

Browse files
authored
fix: determine correct version for Golang components (#906)
* fix: determine correct version for Golang components * chore: remove unnecessary symbols
1 parent d8cae9f commit c61a928

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

opa/Dockerfile

+4-5
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,10 @@ WORKDIR /opa
8686
RUN <<EOF
8787
# Unfortunately, we need to create a dummy Git repository to allow cyclonedx-gomod to determine the version of OPA
8888
git init
89-
git add go.mod
90-
git config --global user.email "[email protected]"
91-
git config --global user.name "dummy"
92-
git commit -m "dummy"
93-
git tag "${PRODUCT}"
89+
git config user.email "[email protected]"
90+
git config user.name "Fake commiter"
91+
git commit --allow-empty --message "Fake commit, so that we can create a tag"
92+
git tag "v${PRODUCT}"
9493
go build -o opa -buildmode=exe
9594
~/go/bin/cyclonedx-gomod app -json -output-version 1.5 -output "opa_${PRODUCT}.cdx.json" -packages -files
9695
EOF

statsd_exporter/Dockerfile

+4-5
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,10 @@ curl "https://repo.stackable.tech/repository/packages/statsd_exporter/statsd_exp
3232

3333
# Unfortunately, we need to create a dummy Git repository to allow cyclonedx-gomod to determine the version of statsd_exporter
3434
git init
35-
git add go.mod
36-
git config --global user.email "[email protected]"
37-
git config --global user.name "dummy"
38-
git commit -m "dummy"
39-
git tag "${PRODUCT}"
35+
git config user.email "[email protected]"
36+
git config user.name "Fake commiter"
37+
git commit --allow-empty --message "Fake commit, so that we can create a tag"
38+
git tag "v${PRODUCT}"
4039
go build -o ../statsd_exporter
4140
$GOPATH/bin/cyclonedx-gomod app -json -output-version 1.5 -output ../statsd_exporter-${PRODUCT}.cdx.json -packages -files
4241
)

0 commit comments

Comments
 (0)