From ebea6c67da89e7d2aae75017890f49734ed6b6c2 Mon Sep 17 00:00:00 2001 From: db1234719 Date: Mon, 24 Nov 2025 13:16:04 +0330 Subject: [PATCH] added -j8 to build faster in parallel with cores avaiabe to the ocntainer it buids in --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 74dcf6e..2e8acbb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ RUN ./configure \ --with-stream_realip_module \ --with-http_slice_module \ --with-http_v2_module -RUN make && make install +RUN make -j$(nproc) && make install RUN rm -rf /tmp/* && rm -rf /var/cache/apk/* # --- Stage 2: Runtime ---