blob: f19c2832b9c636815db850502f7a2259f08638cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# To build, run from the top-level directory:
# docker build -f server/Dockerfile -t egortensin/math-server .
FROM alpine:3.11 AS base
FROM base AS builder
ENV src_dir=/usr/src/math-server
COPY [".", "$src_dir"]
RUN build_deps='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
FROM base
LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>"
COPY --from=builder ["/opt/math-server", "/opt/math-server"]
RUN runtime_deps='boost-filesystem boost-program_options boost-regex boost-unit_test_framework libstdc++' && \
apk add $runtime_deps && \
/opt/math-server/bin/math-server-unit-tests --log_level=all
CMD ["/opt/math-server/bin/math-server"]
|