From 9bf063eb96d4df448d61af90d90f6e2021ec9317 Mon Sep 17 00:00:00 2001 From: Domingo Dirutigliano Date: Sat, 29 Apr 2023 00:14:50 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4cc3c64..7b0cadf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,9 +22,9 @@ WORKDIR /tmp/ RUN git clone --single-branch --branch release https://github.com/jpcre2/jpcre2 RUN git clone --single-branch https://github.com/mfontanini/libtins.git WORKDIR /tmp/jpcre2 -RUN ./configure; make; make install +RUN ./configure; make -j`nproc`; make install WORKDIR /tmp/libtins -RUN mkdir build; cd build; cmake ../ -DLIBTINS_ENABLE_CXX11=1; make; make install +RUN mkdir build; cd build; cmake ../ -DLIBTINS_ENABLE_CXX11=1; make -j`nproc`; make install RUN mkdir -p /execute/modules WORKDIR /execute