diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-30 05:18:03 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-04-05 20:45:56 +0300 |
commit | c99539e111e70006c0895025c44520a93e046507 (patch) | |
tree | 85e22836554eb7f85912a715845bad5533f962ba /client/Dockerfile | |
parent | Travis: more verbose & correct stress_test.sh (diff) | |
download | math-server-c99539e111e70006c0895025c44520a93e046507.tar.gz math-server-c99539e111e70006c0895025c44520a93e046507.zip |
update cmake-common
Diffstat (limited to 'client/Dockerfile')
-rw-r--r-- | client/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/Dockerfile b/client/Dockerfile index 640391b..858b954 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -10,7 +10,8 @@ COPY [".", "$src_dir"] RUN build_deps='boost-dev cmake g++ make python3' && \ apk add --no-cache $build_deps && \ - "$src_dir/cmake/cmake/build/build.py" \ + cd -- "$src_dir/cmake" && \ + python3 -m project.cmake.build \ --install /opt/math-server \ --configuration Release \ -- \ |