aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/client
diff options
context:
space:
mode:
Diffstat (limited to 'client')
-rw-r--r--client/Dockerfile10
1 files changed, 5 insertions, 5 deletions
diff --git a/client/Dockerfile b/client/Dockerfile
index 0ae14f1..349e240 100644
--- a/client/Dockerfile
+++ b/client/Dockerfile
@@ -10,13 +10,13 @@ COPY [".", "$src_dir"]
RUN build_deps='boost-dev cmake g++ make python3' && \
apk add --no-cache $build_deps && \
- "$src_dir/cmake/ci/build.py" \
- --src "$src_dir" \
+ "$src_dir/cmake/cmake/build/build.py" \
--install /usr/local \
- --clean \
--configuration Release \
- -- -D ENABLE_TESTS=ON \
- -- -D Boost_USE_STATIC_LIBS=OFF && \
+ -- \
+ "$src_dir" \
+ -D ENABLE_TESTS=ON \
+ -D Boost_USE_STATIC_LIBS=OFF && \
rm -rf -- "$src_dir" && \
apk del --purge --rdepends $build_deps && \
runtime_deps='boost-filesystem boost-program_options boost-regex boost-unit_test_framework libstdc++' && \