diff --git a/template/cxx/Dockerfile b/template/cxx/Dockerfile index a1034d6..28fe8b9 100644 --- a/template/cxx/Dockerfile +++ b/template/cxx/Dockerfile @@ -19,8 +19,7 @@ RUN dnf upgrade --refresh -y && \ COPY . . -WORKDIR ./build -RUN cmake .. && cmake --build . --target {{project-name}} --config Release --parallel 8 +RUN cmake -B build && cmake --build build --target {{project-name}} --config Release --parallel 8 # DEPLOYING {% if bin_type == "static" -%}