1
0
Fork 0
mirror of https://github.com/drone/drone-cli.git synced 2024-04-28 04:45:13 +02:00
drone-cli/Dockerfile.linux.arm

13 lines
260 B
Docker
Raw Permalink Normal View History

FROM arm32v7/alpine:3.12 as alpine
RUN apk add -U --no-cache ca-certificates
2023-09-05 16:34:33 +02:00
FROM arm32v7/alpine:3.12
ENV GODEBUG netdns=go
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
2018-02-20 20:12:09 +01:00
2018-02-20 20:16:06 +01:00
COPY release/linux/arm/drone /bin/
2018-02-20 20:12:09 +01:00
ENTRYPOINT ["/bin/drone"]