aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/client/Dockerfile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-04-07 00:45:40 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-04-07 01:06:33 +0300
commite10b7946da60677ddc54da7e75a7282c006f9a70 (patch)
tree8b1c505cbe7d6e954ea9dace556b410f4ce6e55e /client/Dockerfile
parentcmake: slight CMakeLists.txt refactoring (diff)
downloadmath-server-e10b7946da60677ddc54da7e75a7282c006f9a70.tar.gz
math-server-e10b7946da60677ddc54da7e75a7282c006f9a70.zip
Makefile: allow to override MATH_SERVER_TESTS
Diffstat (limited to 'client/Dockerfile')
-rw-r--r--client/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Dockerfile b/client/Dockerfile
index 2d6e1c2..8da5148 100644
--- a/client/Dockerfile
+++ b/client/Dockerfile
@@ -11,7 +11,7 @@ COPY [".", "$src_dir"]
RUN build_deps='bash boost-dev cmake g++ make python3' && \
apk add --no-cache $build_deps && \
cd -- "$src_dir" && \
- make install CONFIGURATION=Release CMAKE_FLAGS='-D Boost_USE_STATIC_LIBS=OFF'
+ make install CONFIGURATION=Release CMAKE_FLAGS='-D MATH_SERVER_TESTS=ON -D Boost_USE_STATIC_LIBS=OFF'
FROM base