mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-29 10:49:38 +00:00
* Update to v1.20.13 * Bump sonobuoy and golang * Change test timeout to 60m * Bump containerd to v1.14.12-k3s1 Signed-off-by: Chris Kim <oats87g@gmail.com>
12 lines
251 B
Docker
12 lines
251 B
Docker
ARG GOLANG=golang:1.15.15-alpine3.13
|
|
FROM ${GOLANG}
|
|
|
|
RUN apk -U --no-cache add bash jq
|
|
ENV DAPPER_SOURCE /go/src/github.com/rancher/k3s/
|
|
ENV HOME ${DAPPER_SOURCE}
|
|
WORKDIR ${DAPPER_SOURCE}
|
|
|
|
COPY ./scripts/test-mods /bin/
|
|
|
|
ENTRYPOINT ["/bin/test-mods"]
|