mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
f2bde63eea
* Bump go version to 1.20.3 to match upstream * Bump cri-dockerd * Bump golanci-lint * go generate * Bump selinux in cgroup test * Bump to v1.27.1 tags * Release documentation improvements * Only run upgrade e2e test on PR Signed-off-by: Derek Nola <derek.nola@suse.com> Signed-off-by: Brad Davidson <brad.davidson@rancher.com> Co-authored-by: Brad Davidson <brad.davidson@rancher.com>
20 lines
333 B
Docker
20 lines
333 B
Docker
ARG GOLANG=golang:1.20.3-alpine3.17
|
|
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
|