mirror of
https://github.com/aljazceru/addons.git
synced 2026-02-12 00:24:20 +01:00
* Update Dockerfile * Update CHANGELOG.md * Update config.json * Update config.json * Update config.json
15 lines
184 B
Docker
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" ]
|