Files
k3s/Dockerfile.test.mod.dapper
Derek Nola 2e95008735 [Release-1.23] Bump install tests OS images (#6381)
* Bump to Leap 15.4 for testing

* Replace fedora-coreos with fedora 36 for install tests 

* Bump alpine to 3.16

Signed-off-by: Derek Nola <derek.nola@suse.com>
2022-10-31 12:53:19 -07:00

12 lines
250 B
Docker

ARG GOLANG=golang:1.17.13-alpine3.16
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"]