mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 01:11:57 +01:00
08d7d8c803
* [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"]
|
|
|