1
0
mirror of https://github.com/drone/drone-cli.git synced 2026-01-22 19:11:34 +01:00
drone-cli/Dockerfile
2024-07-29 11:41:54 +02:00

11 lines
256 B
Docker

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