mirror of
https://github.com/koenrh/dnscontrol-action.git
synced 2025-01-10 00:59:22 +08:00
19 lines
584 B
Text
19 lines
584 B
Text
|
FROM stackexchange/dnscontrol:v0.2.8@sha256:007447bf199e74964b854b40585bd3ad1e60c6586fbb5e46c935fe9ffbaeedb3
|
||
|
|
||
|
LABEL repository="https://github.com/koenrh/dnscontrol-action"
|
||
|
LABEL maintainer="Koen Rouwhorst <info@koenrouwhorst.nl>"
|
||
|
|
||
|
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"
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
bash~=4 \
|
||
|
jq~=1.6
|
||
|
|
||
|
COPY README.md /
|
||
|
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|