mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 21:24:20 +01:00
* duckdns: Prettier YAML files * duckdns: Sort build.json * duckdns: Update add-on URL * duckdns: Remove curl from Dockerfile, part of base image * duckdns: Small style change to Dockerfile * duckdns: Documents missing ipv4 & ipv6 options
15 lines
321 B
Docker
15 lines
321 B
Docker
ARG BUILD_FROM
|
|
FROM $BUILD_FROM
|
|
|
|
# Setup base
|
|
ARG DEHYDRATED_VERSION
|
|
RUN apk add --no-cache 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 data/*.sh /
|
|
|
|
CMD [ "/run.sh" ]
|