mirror of
https://github.com/k3s-io/k3s.git
synced 2026-06-11 09:52:24 -04:00
14 lines
281 B
Docker
14 lines
281 B
Docker
ARG GOLANG=golang:1.26.2-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"]
|