mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* 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
15 lines
195 B
Docker
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" ]
|