dotfiles/packages/Dockerfile.kubectl

18 lines
424 B
Docker
Raw Normal View History

FROM alpine:3 as build
WORKDIR /root
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 chmod +x kubectl
FROM scratch AS binaries
LABEL maintainer="Tine <mentos1386> Jozelj <tine@tjo.space>"
2020-12-23 19:31:35 +00:00
LABEL org.opencontainers.image.source https://github.com/mentos1386/workspace
COPY --from=build /root/kubectl /