Files
addons/letsencrypt/Dockerfile
Pascal Vizeli 7dbc3ce79c Bugfix letsencrypt (#231)
* Update Dockerfile

* Update CHANGELOG.md

* Update config.json

* Update config.json

* Update config.json
2018-01-16 23:34:50 +01:00

15 lines
184 B
Docker

ARG BUILD_FROM
FROM $BUILD_FROM
# Add env
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache certbot py2-future
# Copy data
COPY run.sh /
RUN chmod a+x /run.sh
CMD [ "/run.sh" ]