mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 19:19:42 +00:00
12 lines
249 B
Docker
12 lines
249 B
Docker
ARG GOLANG=golang:1.19.5-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"]
|