Files
addons/letsencrypt/Dockerfile
Pascal Vizeli dc1c0e6579 Add Let's encrypt addon (#2)
* Add Let's encrypt addon

* fix copy past stuff

* Update README.md

* Update config.json

* Update config.json

* Update README.md

* Update script

* finish first version

* update description
2017-04-22 23:29:25 +02:00

15 lines
195 B
Docker

FROM %%BASE_IMAGE%%
# Add version
ENV VERSION %%VERSION%%
ENV LANG C.UTF-8
# Setup base
RUN apk add --no-cache jq git python
# Copy data
COPY run.sh /
RUN chmod 775 /run.sh
CMD [ "/run.sh" ]