mirror of
https://github.com/ysoftdevs/imagepullsecret-injector.git
synced 2026-01-11 14:30:42 +01:00
7 lines
239 B
Docker
7 lines
239 B
Docker
FROM alpine:3.13.4
|
|
|
|
RUN apk add bash curl openssl \
|
|
&& 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
|