Files
secret-duplicator/build/Dockerfile.cert-generator
2021-06-28 17:40:08 +02:00

8 lines
278 B
Docker

FROM alpine:3.13.4
RUN apk add bash curl openssl \
&& apk add --update coreutils jq \
&& curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" \
&& chmod 755 ./kubectl \
&& mv ./kubectl /usr/bin/kubectl