mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 13:44:20 +01:00
* Update branch of add-ons with armv7 * update configurator * Fix docker file * Update docker files * fix image * Update * certbot
17 lines
339 B
Docker
17 lines
339 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 curl openssl \
|
|
&& 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" ]
|