fix build

This commit is contained in:
Lukas Prettenthaler 2021-08-19 11:33:25 +02:00
parent 6fe8e729bc
commit 7d64f8db45
No known key found for this signature in database
GPG Key ID: 58E5A82932BCE65D

View File

@ -3,7 +3,7 @@ ARG ALPINE_VERSION=3.14
ARG ZT_COMMIT=e8f7d5ef9e7ba6be0b2163cfa31f8817ba5b18f4
ARG ZT_VERSION=1.6.5
FROM ${FROM_IMAGE}:${ALPINE_VERSION} as builder
FROM ${ALPINE_IMAGE}:${ALPINE_VERSION} as builder
RUN apk add --update alpine-sdk linux-headers \
&& git clone --quiet https://github.com/zerotier/ZeroTierOne.git /src \
@ -11,7 +11,7 @@ RUN apk add --update alpine-sdk linux-headers \
&& cd /src \
&& make -f make-linux.mk
FROM ${FROM_IMAGE}:${ALPINE_VERSION}
FROM ${ALPINE_IMAGE}:${ALPINE_VERSION}
LABEL version="${ZT_VERSION}"
LABEL description="ZeroTier One as Docker Image"