aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/server/Dockerfile
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-03-14 14:57:55 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-03-24 18:42:56 +0300
commit6aac08009254909aab3e0359f3ad7ab4e87a91e9 (patch)
tree09dac4cdb5c13e35375e49e44e51aeff7abc6529 /server/Dockerfile
parentworkflows/ci: Bionic to Focal (diff)
downloadmath-server-6aac08009254909aab3e0359f3ad7ab4e87a91e9.tar.gz
math-server-6aac08009254909aab3e0359f3ad7ab4e87a91e9.zip
add `make install`, `make test`, etc.
Tests can be called using CTest now.
Diffstat (limited to 'server/Dockerfile')
-rw-r--r--server/Dockerfile14
1 files changed, 4 insertions, 10 deletions
diff --git a/server/Dockerfile b/server/Dockerfile
index f19c283..c243edd 100644
--- a/server/Dockerfile
+++ b/server/Dockerfile
@@ -8,22 +8,16 @@ FROM base AS builder
ENV src_dir=/usr/src/math-server
COPY [".", "$src_dir"]
-RUN build_deps='boost-dev cmake g++ make python3' && \
+RUN build_deps='bash boost-dev cmake g++ make python3' && \
apk add --no-cache $build_deps && \
- cd -- "$src_dir/cmake" && \
- python3 -m project.cmake.build \
- --install /opt/math-server \
- --configuration Release \
- -- \
- "$src_dir" \
- -D MATH_SERVER_TESTS=ON \
- -D Boost_USE_STATIC_LIBS=OFF
+ cd -- "$src_dir" && \
+ make install CONFIGURATION=Release CMAKE_FLAGS='-D Boost_USE_STATIC_LIBS=OFF'
FROM base
LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"
-COPY --from=builder ["/opt/math-server", "/opt/math-server"]
+COPY --from=builder ["/usr/src/math-server/.build/install", "/opt/math-server"]
RUN runtime_deps='boost-filesystem boost-program_options boost-regex boost-unit_test_framework libstdc++' && \
apk add $runtime_deps && \