Files
addons/duckdns/Dockerfile
Franck Nijhof f56d653d22 duckdns: Collection of improvements (#900)
* duckdns: Prettier YAML files

* duckdns: Sort build.json

* duckdns: Update add-on URL

* duckdns: Remove curl from Dockerfile, part of base image

* duckdns: Small style change to Dockerfile

* duckdns: Documents missing ipv4 & ipv6 options
2019-12-18 13:54:57 +01:00

15 lines
321 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Setup base
ARG DEHYDRATED_VERSION
RUN apk add --no-cache openssl \
&& curl -s -o /usr/bin/dehydrated \
"https://raw.githubusercontent.com/lukas2511/dehydrated/v${DEHYDRATED_VERSION}/dehydrated" \
&& chmod a+x /usr/bin/dehydrated
# Copy data
COPY data/*.sh /
CMD [ "/run.sh" ]