Skip to content

Commit

Permalink
⬆️ Upgrades ZeroTier One to 1.8.5 (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck authored Mar 9, 2022
1 parent ae282a9 commit 8544501
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions zerotier/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,27 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN \
apk add --no-cache --virtual .build-dependencies \
build-base=0.5-r2 \
linux-headers=5.10.41-r0 \
cargo=1.56.1-r0 \
git=2.34.1-r0 \
linux-headers=5.10.41-r0 \
openssl-dev=1.1.1l-r8 \
pkgconf=1.8.0-r0 \
\
&& apk add --no-cache \
libgcc=10.3.1_git20211027-r0 \
libstdc++=10.3.1_git20211027-r0 \
\
&& git clone --branch "1.8.4" --depth=1 \
&& git clone --branch "1.8.5" --depth=1 \
"https://github.com/zerotier/ZeroTierOne.git" /tmp/zerotier \
\
&& cd /tmp/zerotier \
&& make \
&& make install \
\
&& apk del --no-cache --purge .build-dependencies \
&& rm -f -r /tmp/*
&& rm -f -r \
/root/.cargo \
/tmp/*

# Copy root filesystem
COPY rootfs /
Expand Down

0 comments on commit 8544501

Please sign in to comment.