aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/client
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-01-09 02:43:44 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-01-09 04:01:57 +0300
commit7205585d73c756c608529cb0305a26e834f7a831 (patch)
tree279890a4636df7ec32b53df2fae79f39500a3ff5 /client
parentremove unnecessary #include-s (diff)
downloadmath-server-7205585d73c756c608529cb0305a26e834f7a831.tar.gz
math-server-7205585d73c756c608529cb0305a26e834f7a831.zip
update cmake-common
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++' && \