diff options
author | Asbjørn Enge <asbjorn@hanafjedle.net> | 2018-09-07 14:11:25 +0200 |
---|---|---|
committer | Asbjørn Enge <asbjorn@hanafjedle.net> | 2018-09-07 14:11:25 +0200 |
commit | 701d64936d7425ff93f1e7b017c900e2fe99fa71 (patch) | |
tree | c2db00c60d03a9770ac6db2b5147b065941959b2 /ext | |
parent | ceff48b07c6ce89c5b773147a3afa4198ae508b0 (diff) | |
download | infinitytier-701d64936d7425ff93f1e7b017c900e2fe99fa71.tar.gz infinitytier-701d64936d7425ff93f1e7b017c900e2fe99fa71.zip |
Using builder pattern to build in container while keeping final image small
Diffstat (limited to 'ext')
-rw-r--r-- | ext/installfiles/linux/zerotier-containerized/Dockerfile | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/ext/installfiles/linux/zerotier-containerized/Dockerfile b/ext/installfiles/linux/zerotier-containerized/Dockerfile index 85faace0..f1fc45ed 100644 --- a/ext/installfiles/linux/zerotier-containerized/Dockerfile +++ b/ext/installfiles/linux/zerotier-containerized/Dockerfile @@ -1,15 +1,21 @@ -FROM alpine:latest +FROM alpine:latest as builder MAINTAINER Adam Ierymenko <adam.ierymenko@zerotier.com> -LABEL version="1.2.4" -LABEL description="Containerized ZeroTier One for use on CoreOS or other Docker-only Linux hosts." +ARG VERSION=1.2.12 +LABEL version=$VERSION +LABEL description="Containerized ZeroTier One" -# Uncomment to build in container -#RUN apk add --update alpine-sdk linux-headers +RUN apk add --update alpine-sdk linux-headers +RUN git clone https://github.com/zerotier/ZeroTierOne.git +WORKDIR ZeroTierOne +RUN git checkout $VERSION +RUN make + +FROM alpine:latest as final RUN apk add --update libgcc libstdc++ -ADD zerotier-one / +COPY --from=builder /ZeroTierOne/zerotier-one / RUN chmod 0755 /zerotier-one RUN ln -sf /zerotier-one /zerotier-cli RUN mkdir -p /var/lib/zerotier-one |