mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
d93c82f958
* Increase test timeout to 60m * Bump golang to v1.16.10 * Bump sonobuoy to v0.55.0 * Bump containerd to v1.5.8-k3s1 Signed-off-by: Chris Kim <oats87g@gmail.com>
12 lines
251 B
Docker
12 lines
251 B
Docker
ARG GOLANG=golang:1.16.10-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"]
|