forked from krkn-chaos/krkn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* golang cves fix Signed-off-by: Tullio Sebastiani <[email protected]> fix Signed-off-by: Tullio Sebastiani <[email protected]> * arcaflow update Signed-off-by: Tullio Sebastiani <[email protected]> --------- Signed-off-by: Tullio Sebastiani <[email protected]>
- Loading branch information
1 parent
34bfc0d
commit 32142cc
Showing
2 changed files
with
5 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
# oc build | ||
FROM golang:1.22.4 AS oc-build | ||
FROM golang:1.22.5 AS oc-build | ||
RUN apt-get update && apt-get install -y --no-install-recommends libkrb5-dev | ||
WORKDIR /tmp | ||
RUN git clone --branch release-4.18 https://github.com/openshift/oc.git | ||
WORKDIR /tmp/oc | ||
RUN go mod edit -go 1.22.3 &&\ | ||
RUN go mod edit -go 1.22.5 &&\ | ||
go get github.com/moby/[email protected] &&\ | ||
go get github.com/containerd/[email protected]&&\ | ||
go get github.com/docker/[email protected]&&\ | ||
go get github.com/docker/[email protected]&&\ | ||
go get github.com/opencontainers/[email protected]&&\ | ||
go mod tidy && go mod vendor | ||
RUN make GO_REQUIRED_MIN_VERSION:= oc | ||
|
||
|
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