mirror of
https://github.com/harness-community/drone-helm-chart-container-registry.git
synced 2026-06-04 18:24:12 +08:00
12 lines
276 B
Docker
12 lines
276 B
Docker
FROM alpine:3.6 as alpine
|
|
RUN apk add -U --no-cache ca-certificates
|
|
|
|
FROM alpine:3.6
|
|
ENV GODEBUG netdns=go
|
|
|
|
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
|
|
RUN apk add libc6-compat
|
|
|
|
ADD release/linux/amd64/drone-helm /bin/
|
|
ENTRYPOINT ["/bin/drone-helm"] |