added -j8 to build faster in parallel with cores avaiabe to the ocntainer it buids in

This commit is contained in:
db1234719
2025-11-24 13:16:04 +03:30
parent 0e3b1af905
commit ebea6c67da

View File

@@ -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 ---