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