Files
k3s/Dockerfile.test.mod.dapper
Chris Kim 89c4433700 [release-1.19] Bump Kubernetes to v1.19.13 (#3656)
* Bump golang to 1.15.14
* Update to v1.19.13

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

12 lines
251 B
Docker

ARG GOLANG=golang:1.15.14-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"]