1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

docker: build alpine images with all cores

This commit is contained in:
Steffen Vogel 2021-09-17 16:53:47 +02:00
parent 4fba89fee4
commit 58e05126e5

View file

@ -105,7 +105,7 @@ RUN --security=insecure \
cmake -DWITH_OPENMP=OFF \
-DCMAKE_INSTALL_PREFIX=${PREFIX} \
-DCMAKE_PREFIX_PATH=${PREFIX} .. && \
make -j8 install
make -j$(nproc) install
FROM alpine:${ALPINE_VERSION} AS app