FROM alpine:3.15@sha256:4edbd2beb5f78b1014028f4fbb99f3237d9561100b6881aabbf5acce2c4f9454 LABEL repository="https://github.com/koenrh/dnscontrol-action" LABEL maintainer="Koen Rouwhorst " LABEL "com.github.actions.name"="DNSControl" LABEL "com.github.actions.description"="Deploy your DNS configuration to multiple providers." LABEL "com.github.actions.icon"="cloud" LABEL "com.github.actions.color"="yellow" ENV DNSCONTROL_VERSION="3.16.0" ENV DNSCONTROL_CHECKSUM="24220c9dcff17c77bff26b5eea2f1886df2abf36581a330d01dde14794b3e7c2" RUN apk -U --no-cache upgrade && \ apk add --no-cache bash ca-certificates curl libc6-compat RUN curl -sL "https://github.com/StackExchange/dnscontrol/releases/download/v$DNSCONTROL_VERSION/dnscontrol-Linux" \ -o dnscontrol && \ echo "$DNSCONTROL_CHECKSUM dnscontrol" | sha256sum -c - && \ chmod +x dnscontrol && \ mv dnscontrol /usr/local/bin/dnscontrol RUN ["dnscontrol", "version"] COPY README.md entrypoint.sh bin/filter-preview-output.sh / ENTRYPOINT ["/entrypoint.sh"]