1
0
mirror of https://github.com/drone/drone-cli.git synced 2024-11-26 14:13:47 +01:00
drone-cli/Dockerfile.linux.ppc64le

12 lines
259 B
Docker
Raw Normal View History

FROM amd64/alpine:3.17 as alpine
RUN apk add -U --no-cache ca-certificates
FROM amd64/alpine:3.17
ENV GODEBUG netdns=go
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY release/linux/ppc64le/drone /bin/
ENTRYPOINT ["/bin/drone"]