We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f38e72b commit 6f96bd6Copy full SHA for 6f96bd6
Dockerfile
@@ -14,6 +14,14 @@
14
15
FROM quay.io/helmpack/chart-testing:v3.7.0
16
17
+# Override kubectl
18
+# https://github.com/aws/aws-cli/issues/6920
19
+ARG kubectl_version=v1.23.10
20
+LABEL kubectl_version=$kubectl_version
21
+RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$kubectl_version/bin/linux/amd64/kubectl" && \
22
+ chmod +x kubectl && \
23
+ mv kubectl /usr/local/bin/
24
+
25
RUN apk add bash tree curl wget
26
27
ENV PATH /google-cloud-sdk/bin:$PATH
0 commit comments