From 5f6260ff12a63fbde29ea5c33becbd469cd84aaa Mon Sep 17 00:00:00 2001 From: markxu Date: Sun, 9 Mar 2025 22:10:14 +0800 Subject: [PATCH] Optimize ZeroTier build process with parallel compilation - Added `-j` flag to make command for faster build times - Enables parallel compilation during ZeroTier build --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d1221a..96414d4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,7 +24,7 @@ RUN set -x\ && git checkout ${TAG}\ && echo "切换到tag:${TAG}"\ && make ZT_SYMLINK=1 \ - && make\ + && make -j\ && make install\ && echo "make success!"\ ; zerotier-one -d \