You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
275 B

FROM golang:1.18-alpine
WORKDIR /kind
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
RUN apk add --no-cache \
bash curl docker make
# Install kubectl and make sure it's available in the PATH.
ADD kubectl /bin/kubectl
ADD kind /bin/kind