Files
addons/duckdns/Dockerfile
Pascal Vizeli 93e9728ccf Update deydrated (#639)
* Update dehydrated

* Fix permission

* Bashio

* Fix lint

* Add basic readme
2019-07-27 18:10:33 +02:00

14 lines
316 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Setup base
ARG DEHYDRATED_VERSION
RUN apk add --no-cache curl 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" ]