mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-04 21:29:47 +00:00
* Bump containerd to v1.4.12-k3s1 * Bump golang to 1.16.10 and sonobuoy to 0.55.0 * Change timeout to 60m Signed-off-by: Chris Kim <oats87g@gmail.com>
20 lines
334 B
Docker
20 lines
334 B
Docker
ARG GOLANG=golang:1.16.10-alpine3.13
|
|
FROM ${GOLANG}
|
|
|
|
COPY --from=plugins/manifest:1.2.3 /bin/* /bin/
|
|
|
|
RUN apk -U --no-cache add bash
|
|
|
|
ARG DOCKER_USERNAME
|
|
ENV DOCKER_USERNAME $DOCKER_USERNAME
|
|
|
|
ARG DOCKER_PASSWORD
|
|
ENV DOCKER_PASSWORD $DOCKER_PASSWORD
|
|
|
|
ARG DRONE_TAG
|
|
ENV DRONE_TAG $DRONE_TAG
|
|
|
|
COPY ./scripts/manifest /bin/
|
|
|
|
RUN manifest
|