From 2748d37561ca7b89aba4f2fbe64792b7b8867ce3 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Thu, 10 Oct 2024 15:39:25 +0200 Subject: [PATCH] FIX: reduced build concurrency --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index a793a9d..7f474a9 100644 --- a/Containerfile +++ b/Containerfile @@ -6,7 +6,7 @@ WORKDIR /src RUN git clone --recurse-submodules https://gitea.federationhq.de/byterazor/redmine-api-cpp.git -RUN cd redmine-api-cpp && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DENABLE_TESTS=OFF && make -j 4 +RUN cd redmine-api-cpp && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=RELEASE -DENABLE_TESTS=OFF && make -j 1 FROM alpine:latest