mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-18 21:54:20 +01:00
* Update dehydrated to version 0.5.0 * Update CHANGELOG.md * Update config.json * Update config.json
18 lines
363 B
Docker
18 lines
363 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 jq curl libressl \
|
|
&& 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 /
|
|
RUN chmod a+x /*.sh
|
|
|
|
CMD [ "/run.sh" ]
|