Files
k3s/Dockerfile.test.mod.dapper
Chris Kim 12be663c53 [release-1.20] Bump Kubernetes to v1.20.9 (#3655)
* Bump golang to 1.15.14
* Update to v1.20.9

Signed-off-by: Chris Kim <oats87g@gmail.com>
2021-07-16 09:55:59 -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"]