mirror of
https://github.com/k3s-io/k3s.git
synced 2026-07-14 04:23:15 -04:00
Some checks failed
govulncheck / govulncheck (push) Has been cancelled
Signed-off-by: Rafael Breno <32229014+rafaelbreno@users.noreply.github.com>
13 lines
281 B
Docker
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"]
|