File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 2323 docker create --name extract-container my-image-name:latest
2424
2525 # Copy the binary from the container
26- docker run --rm -v $PWD:/data my-image-name:latest a 50
26+ docker run --rm -v $PWD:/data my-image-name:latest
2727
2828 # Remove the container
2929 docker rm extract-container
Original file line number Diff line number Diff line change @@ -26,13 +26,7 @@ ENV CXX=/usr/bin/clang++
2626
2727RUN mkdir -p /root/Mergen/build
2828WORKDIR /root/Mergen/build
29-
30- # Default build argument for testing
31- ARG TESTING=false
32- ENV TESTING ${TESTING}
33-
34- # Run cmake with the option to enable testing if TESTING is true
35- RUN cmake .. ${TESTING:+-DMERGEN_TESTING=1} && cmake --build . -j $(nproc)
29+ RUN cmake .. && cmake --build . -j $(nproc)
3630
3731# Provide the built binary path as the default output for the container
3832WORKDIR /root/Mergen/build
You can’t perform that action at this time.
0 commit comments