From 21c137302332f969eae34b407ad298b03ff16497 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sat, 30 Nov 2019 03:58:18 +0300 Subject: add Docker files --- client/Dockerfile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 client/Dockerfile (limited to 'client') diff --git a/client/Dockerfile b/client/Dockerfile new file mode 100644 index 0000000..b60e96b --- /dev/null +++ b/client/Dockerfile @@ -0,0 +1,30 @@ +# To build, run from the top-level directory: +# docker build -f client/Dockerfile -t egortensin/math-client . + +FROM debian + +LABEL maintainer="Egor Tensin " + +# Don't prompt: +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update -yq && apt-get dist-upgrade -yq + +RUN apt-get install -yq build-essential cmake libboost-filesystem-dev libboost-program-options-dev libboost-test-dev + +COPY [".", "/tmp/src/"] + +WORKDIR /tmp/build + +RUN cmake -G "Unix Makefiles" \ + -D CMAKE_BUILD_TYPE=RelWithDebInfo \ + -D ENABLE_TESTS=ON \ + -D USE_STATIC_RUNTIME=OFF \ + -D CMAKE_CXX_STANDARD_LIBRARIES="-lpthread" \ + /tmp/src && \ + cmake --build test && \ + ./test/unit_tests/unit_tests --log_level=all && \ + cmake --build client + +ENTRYPOINT ["./client/client"] +CMD ["-c", "2 * 2"] -- cgit v1.2.3