We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e9cf0d commit 3033d92Copy full SHA for 3033d92
Dockerfile
@@ -6,10 +6,11 @@ RUN apt-get update
6
RUN apt-get install -y build-essential cmake git python3 python3-pip python3-venv
7
8
WORKDIR /home/build-dir
9
-
10
-COPY . .
11
RUN cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/home/build-dir/install
12
RUN cmake --build build -j10
+
13
WORKDIR /home/build-dir/build
14
RUN ctest --output-on-failure
15
16
+RUN cmake --build build --target install
0 commit comments