Files
addons/duckdns/Dockerfile
Pascal Vizeli f52e0d7a60 Update branch of add-ons with armv7 (#538)
* Update branch of add-ons with armv7

* update configurator

* Fix docker file

* Update docker files

* fix image

* Update

* certbot
2019-03-10 17:09:35 +01:00

17 lines
339 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# 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 *.sh /
CMD [ "/run.sh" ]