k3s/Dockerfile.test.mod.dapper

12 lines
250 B
Docker
Raw Normal View History

2021-05-14 17:36:13 +00:00
ARG GOLANG=golang:1.16.4-alpine3.12
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"]