Files
k3s/Dockerfile.test.mod.dapper
Chris Kim 9c981b0184 [release-1.21] Bump Kubernetes to v1.21.3 (#3652)
* Bump golang to 1.16.6
* Update to v1.21.3

Signed-off-by: Chris Kim <oats87g@gmail.com>
2021-07-15 22:04:09 -07:00

12 lines
250 B
Docker

ARG GOLANG=golang:1.16.6-alpine3.13
FROM ${GOLANG}
RUN apk -U --no-cache add bash jq
ENV DAPPER_SOURCE /go/src/github.com/rancher/k3s/
ENV HOME ${DAPPER_SOURCE}
WORKDIR ${DAPPER_SOURCE}
COPY ./scripts/test-mods /bin/
ENTRYPOINT ["/bin/test-mods"]