fix(packages:kubectl): fix version

This commit is contained in:
Tine Jozelj 2020-12-24 11:54:07 +01:00
parent 92f2a88b14
commit a36a516bbf
No known key found for this signature in database
GPG key ID: 3818B74E3830D7CF

View file

@ -6,7 +6,7 @@ RUN apk --no-cache add curl
ARG VERSION=1.20.0
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/${VERSION}/bin/${TARGETPLATFORM}/kubectl"
RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/v${VERSION}/bin/${TARGETPLATFORM}/kubectl"
RUN chmod +x kubectl
FROM scratch AS binaries