mirror of
https://github.com/drone/drone-cli.git
synced 2025-08-21 04:54:36 +02:00
* [feat]: [CI-8942]: Add alpine support --------- Co-authored-by: TP Honey <tp@harness.io>
14 lines
263 B
Docker
14 lines
263 B
Docker
FROM arm64v8/alpine:3.12 as alpine
|
|
RUN apk add -U --no-cache ca-certificates
|
|
|
|
|
|
FROM arm64v8/alpine:3.12
|
|
|
|
ENV GODEBUG netdns=go
|
|
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
|
|
COPY release/linux/arm64/drone /bin/
|
|
|
|
ENTRYPOINT ["/bin/drone"]
|
|
|