We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9db0ce commit c18e134Copy full SHA for c18e134
Dockerfile
@@ -1,10 +1,10 @@
1
# download kubectl
2
FROM golang:1.23.3-alpine AS kubectl
3
RUN apk add --no-cache curl
4
-RUN export VERSION=$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt) &&\
+RUN export VERSION=$(curl -s https://cdn.dl.k8s.io/release/stable.txt) &&\
5
export OS=$(go env GOOS) && \
6
export ARCH=$(go env GOARCH) &&\
7
- curl -o /usr/local/bin/kubectl -L https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/${OS}/${ARCH}/kubectl &&\
+ curl -o /usr/local/bin/kubectl -L https://cdn.dl.k8s.io/release/${VERSION}/bin/${OS}/${ARCH}/kubectl &&\
8
chmod +x /usr/local/bin/kubectl
9
10
# build jsonnet-bundler
0 commit comments