aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/client/Dockerfile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2019-12-10 11:30:27 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2019-12-10 16:44:54 +0300
commitcf15b237108360ee92f35898e35fa5a52cfc889a (patch)
tree9c95f527c25b9c14d14018e156a9fad6b286ded3 /client/Dockerfile
parentREADME: update (diff)
downloadmath-server-cf15b237108360ee92f35898e35fa5a52cfc889a.tar.gz
math-server-cf15b237108360ee92f35898e35fa5a52cfc889a.zip
AppVeyor/Travis: switch to cmake/build
Diffstat (limited to 'client/Dockerfile')
-rw-r--r--client/Dockerfile26
1 files changed, 12 insertions, 14 deletions
diff --git a/client/Dockerfile b/client/Dockerfile
index d5dd309..9b2ab51 100644
--- a/client/Dockerfile
+++ b/client/Dockerfile
@@ -8,28 +8,26 @@ LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"
# Don't prompt:
ENV DEBIAN_FRONTEND=noninteractive
-RUN apt-get update -yq && \
- apt-get install -yq --no-install-recommends \
+RUN apt-get update -yq \
+ && apt-get install -yq --no-install-recommends \
build-essential \
cmake \
libboost-filesystem-dev \
libboost-program-options-dev \
- libboost-test-dev
+ libboost-test-dev \
+ python3
-ENV src_dir=/tmp/src \
- build_dir=/tmp/build
+ENV src_dir=/usr/src/app
COPY [".", "$src_dir"]
-WORKDIR $build_dir
-
-RUN cmake -G "Unix Makefiles" \
- -D CMAKE_BUILD_TYPE=Release \
- -D CMAKE_INSTALL_PREFIX=/usr/local \
- -D ENABLE_TESTS=ON \
- "$src_dir" && \
- cmake --build . --config Release --target install && \
- /usr/local/bin/unit_tests --log_level=all
+RUN "$src_dir/cmake/build/build.py" \
+ --src "$src_dir" \
+ --install /usr/local \
+ --clean \
+ --configuration Release \
+ -- -DENABLE_TESTS=ON \
+ && /usr/local/bin/unit_tests --log_level=all
ENTRYPOINT ["/usr/local/bin/client"]
CMD ["-c", "2 * 2"]