Use the latest Debian version in Dockerfile
This commit is contained in:
parent
bf6d2e998a
commit
77417aca1f
@ -8,13 +8,14 @@ RUN apt-get update && \
|
|||||||
libzip-dev libboost1.74-all-dev lua5.4 liblua5.4-dev pkg-config -o APT::Install-Suggests=0 -o APT::Install-Recommends=0
|
libzip-dev libboost1.74-all-dev lua5.4 liblua5.4-dev pkg-config -o APT::Install-Suggests=0 -o APT::Install-Recommends=0
|
||||||
|
|
||||||
RUN NPROC=${BUILD_CONCURRENCY:-$(nproc)} && \
|
RUN NPROC=${BUILD_CONCURRENCY:-$(nproc)} && \
|
||||||
|
export CXXFLAGS="-Wno-stringop-overflow" && \
|
||||||
ldconfig /usr/local/lib && \
|
ldconfig /usr/local/lib && \
|
||||||
git clone --branch v2021.3.0 --single-branch https://github.com/oneapi-src/oneTBB.git && \
|
git clone --branch v2021.3.0 --single-branch https://github.com/oneapi-src/oneTBB.git && \
|
||||||
cd oneTBB && \
|
cd oneTBB && \
|
||||||
mkdir build && \
|
mkdir build && \
|
||||||
cd build && \
|
cd build && \
|
||||||
cmake -DTBB_TEST=OFF -DCMAKE_BUILD_TYPE=Release .. && \
|
cmake -DTBB_TEST=OFF -DCMAKE_BUILD_TYPE=Release .. && \
|
||||||
cmake --build . && \
|
cmake -j${NPROC} --build . && \
|
||||||
cmake --install .
|
cmake --install .
|
||||||
|
|
||||||
COPY . /src
|
COPY . /src
|
||||||
|
Loading…
Reference in New Issue
Block a user