Files
addons/duckdns/Dockerfile
Pascal Vizeli e8fa8aa5c8 Update New CLI (#500)
* Update New CLI

* Fix shell

* ssh: Include hassio bash completion (#501)
2019-01-09 13:59:44 +01:00

17 lines
343 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 jq curl libressl \
&& 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" ]