mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-06 13:39:53 +00:00
* Update to v1.29.14 Signed-off-by: Rafael Breno <32229014+rafaelbreno@users.noreply.github.com> * Update Go Alpine Images Signed-off-by: Rafael Breno <32229014+rafaelbreno@users.noreply.github.com> --------- Signed-off-by: Rafael Breno <32229014+rafaelbreno@users.noreply.github.com>
20 lines
334 B
Docker
20 lines
334 B
Docker
ARG GOLANG=golang:1.22.12-alpine3.20
|
|
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
|