1
0
Fork 0
mirror of https://github.com/drone/drone-cli.git synced 2024-05-04 06:36:02 +02:00
drone-cli/Dockerfile

11 lines
256 B
Docker
Raw Permalink 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/
2017-09-13 00:28:13 +02:00
2018-02-20 20:16:06 +01:00
COPY release/linux/amd64/drone /bin/
2017-09-13 00:28:13 +02:00
ENTRYPOINT ["/bin/drone"]