mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-06 17:01:30 +00:00
8 lines
241 B
Plaintext
8 lines
241 B
Plaintext
FROM alpine:latest
|
|
|
|
ARG KIND_VERSION=0.14.0
|
|
|
|
RUN apk add --no-cache curl
|
|
|
|
RUN curl -L https://github.com/kubernetes-sigs/kind/releases/download/v${KIND_VERSION}/kind-linux-amd64 -o /usr/local/bin/kind && \
|
|
chmod +x /usr/local/bin/kind |