mirror of
https://github.com/k3s-io/k3s.git
synced 2026-05-28 04:34:19 -04:00
* Update to 1.33 Signed-off-by: Vitor Savian <vitor.savian@suse.com> * Fix prints that broke unit tests Signed-off-by: Vitor Savian <vitor.savian@suse.com> * Change binary max size to 75 Signed-off-by: Vitor Savian <vitor.savian@suse.com> * Change containerd version to fix misspelling Signed-off-by: Vitor Savian <vitor.savian@suse.com> * Address binary size comment Signed-off-by: Vitor Savian <vitor.savian@suse.com> * Update Dependencies Signed-off-by: Vitor Savian <vitor.savian@suse.com> * Remove dependencie not used anymore Signed-off-by: Vitor Savian <vitor.savian@suse.com> --------- Signed-off-by: Vitor Savian <vitor.savian@suse.com>
19 lines
333 B
Docker
19 lines
333 B
Docker
ARG GOLANG=golang:1.24.2-alpine3.21
|
|
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
|