Optimize ZeroTier build process with parallel compilation
Some checks failed
Docker Build on ZeroTier / check-and-build (push) Has been cancelled

- Added `-j` flag to make command for faster build times
- Enables parallel compilation during ZeroTier build
This commit is contained in:
markxu 2025-03-09 22:10:14 +08:00
parent c607b5d713
commit 5f6260ff12

View File

@ -24,7 +24,7 @@ RUN set -x\
&& git checkout ${TAG}\ && git checkout ${TAG}\
&& echo "切换到tag:${TAG}"\ && echo "切换到tag:${TAG}"\
&& make ZT_SYMLINK=1 \ && make ZT_SYMLINK=1 \
&& make\ && make -j\
&& make install\ && make install\
&& echo "make success!"\ && echo "make success!"\
; zerotier-one -d \ ; zerotier-one -d \