2021-07-05 13:44:19 +02:00
|
|
|
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.0.0
|
2019-03-26 00:11:54 +01:00
|
|
|
# hadolint ignore=DL3006
|
|
|
|
|
FROM ${BUILD_FROM}
|
|
|
|
|
|
|
|
|
|
# Set shell
|
|
|
|
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|
|
|
|
|
|
|
|
|
# Setup base
|
2019-03-26 00:15:06 +01:00
|
|
|
# hadolint ignore=DL3003
|
2019-03-26 00:11:54 +01:00
|
|
|
RUN \
|
|
|
|
|
apk add --no-cache --virtual .build-dependencies \
|
2020-08-22 20:42:26 +02:00
|
|
|
build-base=0.5-r2 \
|
2021-07-05 13:44:19 +02:00
|
|
|
linux-headers=5.10.41-r0 \
|
|
|
|
|
git=2.32.0-r0 \
|
2019-03-26 00:11:54 +01:00
|
|
|
\
|
|
|
|
|
&& apk add --no-cache \
|
2021-07-05 13:44:19 +02:00
|
|
|
libgcc=10.3.1_git20210424-r2 \
|
|
|
|
|
libstdc++=10.3.1_git20210424-r2 \
|
2019-03-26 00:11:54 +01:00
|
|
|
\
|
2021-05-01 00:26:55 +02:00
|
|
|
&& git clone --branch "1.6.5" --depth=1 \
|
2019-03-26 00:11:54 +01:00
|
|
|
"https://github.com/zerotier/ZeroTierOne.git" /tmp/zerotier \
|
|
|
|
|
\
|
|
|
|
|
&& cd /tmp/zerotier \
|
|
|
|
|
&& make \
|
|
|
|
|
&& make install \
|
|
|
|
|
\
|
2020-11-03 10:02:15 +01:00
|
|
|
&& apk del --no-cache --purge .build-dependencies \
|
|
|
|
|
&& rm -f -r /tmp/*
|
2019-03-26 00:11:54 +01:00
|
|
|
|
|
|
|
|
# Copy root filesystem
|
|
|
|
|
COPY rootfs /
|
|
|
|
|
|
|
|
|
|
# Build arguments
|
|
|
|
|
ARG BUILD_ARCH
|
|
|
|
|
ARG BUILD_DATE
|
2021-01-22 08:35:57 +01:00
|
|
|
ARG BUILD_DESCRIPTION
|
|
|
|
|
ARG BUILD_NAME
|
2019-03-26 00:11:54 +01:00
|
|
|
ARG BUILD_REF
|
2021-01-22 08:35:57 +01:00
|
|
|
ARG BUILD_REPOSITORY
|
2019-03-26 00:11:54 +01:00
|
|
|
ARG BUILD_VERSION
|
|
|
|
|
|
|
|
|
|
# Labels
|
|
|
|
|
LABEL \
|
2021-01-22 08:35:57 +01:00
|
|
|
io.hass.name="${BUILD_NAME}" \
|
|
|
|
|
io.hass.description="${BUILD_DESCRIPTION}" \
|
2019-03-26 00:11:54 +01:00
|
|
|
io.hass.arch="${BUILD_ARCH}" \
|
|
|
|
|
io.hass.type="addon" \
|
|
|
|
|
io.hass.version=${BUILD_VERSION} \
|
|
|
|
|
maintainer="Franck Nijhof <frenck@addons.community>" \
|
2021-01-22 08:35:57 +01:00
|
|
|
org.opencontainers.image.title="${BUILD_NAME}" \
|
|
|
|
|
org.opencontainers.image.description="${BUILD_DESCRIPTION}" \
|
2020-05-16 18:31:41 +02:00
|
|
|
org.opencontainers.image.vendor="Home Assistant Community Add-ons" \
|
|
|
|
|
org.opencontainers.image.authors="Franck Nijhof <frenck@addons.community>" \
|
|
|
|
|
org.opencontainers.image.licenses="MIT" \
|
|
|
|
|
org.opencontainers.image.url="https://addons.community" \
|
2021-01-22 08:35:57 +01:00
|
|
|
org.opencontainers.image.source="https://github.com/${BUILD_REPOSITORY}" \
|
|
|
|
|
org.opencontainers.image.documentation="https://github.com/${BUILD_REPOSITORY}/blob/main/README.md" \
|
2020-05-16 18:31:41 +02:00
|
|
|
org.opencontainers.image.created=${BUILD_DATE} \
|
|
|
|
|
org.opencontainers.image.revision=${BUILD_REF} \
|
|
|
|
|
org.opencontainers.image.version=${BUILD_VERSION}
|