Skip to content

Commit

Permalink
use brackets for ARG
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas-Peiffer <[email protected]>
  • Loading branch information
Nicolas-Peiffer committed Oct 16, 2024
1 parent 16908e4 commit 403d63e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ ARG GORELEASER_VERSION
ARG COSIGN_VERSION
ARG KO_VERSION

RUN go install github.com/goreleaser/goreleaser/v2@v$GORELEASER_VERSION \
&& go install github.com/sigstore/cosign/v2/cmd/cosign@v$COSIGN_VERSION \
&& go install github.com/google/ko@$KO_VERSION
RUN go install github.com/goreleaser/goreleaser/v2@v${GORELEASER_VERSION} \
&& go install github.com/sigstore/cosign/v2/cmd/cosign@v${COSIGN_VERSION} \
&& go install github.com/google/ko@v${KO_VERSION}

#==============================================================================#
# installing trivy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ ARG GORELEASER_VERSION
ARG COSIGN_VERSION
ARG KO_VERSION

RUN go install github.com/goreleaser/goreleaser/v2@v$GORELEASER_VERSION \
&& go install github.com/sigstore/cosign/v2/cmd/cosign@v$COSIGN_VERSION \
&& go install github.com/google/ko@$KO_VERSION
RUN go install github.com/goreleaser/goreleaser/v2@v${GORELEASER_VERSION} \
&& go install github.com/sigstore/cosign/v2/cmd/cosign@v${COSIGN_VERSION} \
&& go install github.com/google/ko@v${KO_VERSION}

#==============================================================================#
# installing trivy
Expand Down

0 comments on commit 403d63e

Please sign in to comment.