mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-02-25 16:13:04 +08:00
7 lines
193 B
Docker
7 lines
193 B
Docker
FROM alpine as alpine
|
|
RUN apk add -U --no-cache ca-certificates
|
|
|
|
FROM scratch
|
|
COPY --from=alpine /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
ENTRYPOINT ["/dnscontrol"]
|
|
COPY dnscontrol /
|