mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-06 09:39:36 +00:00
* Bump to Leap 15.4 for testing * Replace fedora-coreos with fedora 36 for install tests (#6315) * Bump alpine to 3.16 Signed-off-by: Derek Nola <derek.nola@suse.com>
20 lines
333 B
Docker
20 lines
333 B
Docker
ARG GOLANG=golang:1.18.7-alpine3.16
|
|
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
|