mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
1b78715903
Should hopefully fix issues that cropped up with arm builds failing due to the sqlite libs from alpine 3.10 no longer being compatible with alpine edge, which was probably never a safe assumption to begin with. Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
17 lines
281 B
Docker
17 lines
281 B
Docker
FROM golang:1.13.14-alpine3.12
|
|
|
|
COPY --from=plugins/manifest:1.2.3 /bin/* /bin/
|
|
|
|
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
|