k3s/Dockerfile.test
Rafael c68c3c48e4
Some checks failed
govulncheck / govulncheck (push) Has been cancelled
Update to v1.33.13 (#14227)
Signed-off-by: Rafael Breno <32229014+rafaelbreno@users.noreply.github.com>
2026-06-16 12:15:27 -03:00

13 lines
281 B
Docker

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