mirror of
https://github.com/ysoftdevs/secret-duplicator.git
synced 2026-01-11 21:10:26 +01:00
8 lines
278 B
Docker
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
|