Skip to content

Commit 6f96bd6

Browse files
authored
Override kubectl
1 parent f38e72b commit 6f96bd6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@
1414

1515
FROM quay.io/helmpack/chart-testing:v3.7.0
1616

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+
1725
RUN apk add bash tree curl wget
1826

1927
ENV PATH /google-cloud-sdk/bin:$PATH

0 commit comments

Comments
 (0)