This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * Kubernetes 1.25 support. * bump k8scc * bump k8scc
- Loading branch information
Showing
22 changed files
with
207 additions
and
240 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 |
---|---|---|
|
@@ -21,3 +21,4 @@ CVE-2020-8561 | |
CVE-2023-28642 | ||
CVE-2023-27561 | ||
CVE-2023-25809 | ||
CVE-2023-29401 |
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
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,11 +1,9 @@ | ||
FROM quay.io/giantswarm/golang:1.17.7 AS builder | ||
FROM quay.io/giantswarm/golang:1.20.3 AS builder | ||
ENV GO111MODULE=on | ||
COPY go.mod /etc/go.mod | ||
RUN cat /etc/go.mod | grep k8scloudconfig | awk '{print $1"/...@"$2}' | xargs -I{} go get {} | ||
# This is needed to extract the versioned catalog name, e.g. [email protected] | ||
RUN ln -s /go/pkg/mod/$(cat /etc/go.mod | grep k8scloudconfig | awk '{print $1"@"$2}') /opt/k8scloudconfig | ||
RUN git clone --depth 1 --branch $(cat /etc/go.mod | grep k8scloudconfig | awk '{print $2}') https://github.com/giantswarm/k8scloudconfig.git && cp -r k8scloudconfig /opt/k8scloudconfig | ||
|
||
FROM alpine:3.16.2 | ||
FROM alpine:3.17.3 | ||
|
||
RUN apk add --update ca-certificates \ | ||
&& rm -rf /var/cache/apk/* | ||
|
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
Oops, something went wrong.