From 5873d40fbe57b0681ccb55f619c6cc8dce76d41c Mon Sep 17 00:00:00 2001 From: Dave Horton Date: Thu, 2 May 2024 12:21:33 -0400 Subject: [PATCH] more build speedup --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1107f90..d9c5c8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ RUN apt-get update \ && cd /usr/local/src \ && git clone https://github.com/warmcat/libwebsockets.git -b v4.3.2 \ && cd /usr/local/src/libwebsockets \ - && mkdir -p build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo && make && make install \ + && mkdir -p build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RelWithDebInfo && make -j ${BUILD_CPUS} && make install \ && git clone https://github.com/sipwise/rtpengine.git -b mr11.5.1.24 \ && cd rtpengine/daemon \ && make -j ${BUILD_CPUS} with_transcoding=yes \