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 8a97f81 commit e2ab279Copy full SHA for e2ab279
building/docker/debian_node.dockerfile
@@ -6,9 +6,19 @@ ADD "./dist/" "/"
6
WORKDIR "/"
7
8
# run installation
9
-RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
+RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true
10
11
# reload the environment
12
CMD source ~/.profile
13
14
+RUN clang --version
15
+RUN cmake --version
16
+RUN ninja --version
17
+RUN ccache --version
18
+RUN cppcheck --version
19
+RUN vcpkg --version
20
+RUN doxygen --version
21
+RUN dot --version
22
+RUN gcovr --version
23
+
24
ENTRYPOINT [ "/bin/sh" ]
0 commit comments