Files
k3s/Dockerfile.test.mod.dapper
Matt Trachier abb8d7d44e Update to v1.23.17-k3s1 (#7005)
* Update to v1.23.17
* update workflows and dockerfiles to proper go version
* add changes to go.mod and go.sum from the go mod tidy command
------
Signed-off-by: matttrach <matttrach@gmail.com>
2023-03-01 14:38:07 -06:00

12 lines
249 B
Docker

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