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