diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-28 00:43:57 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-28 00:52:00 +0300 |
commit | c52a04a4a189ec9cb53422215fe6d02ba6e83daa (patch) | |
tree | 0ea0c647d6393d80cf69f916f48143673697f481 /client/Dockerfile | |
parent | remove unnecessary static-s (diff) | |
download | math-server-c52a04a4a189ec9cb53422215fe6d02ba6e83daa.tar.gz math-server-c52a04a4a189ec9cb53422215fe6d02ba6e83daa.zip |
docker: multi-stage builds
Diffstat (limited to 'client/Dockerfile')
-rw-r--r-- | client/Dockerfile | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/client/Dockerfile b/client/Dockerfile index 349e240..640391b 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -1,9 +1,9 @@ # To build, run from the top-level directory: # docker build -f client/Dockerfile -t egortensin/math-client . -FROM alpine:3.11 +FROM alpine:3.11 AS base -LABEL maintainer="Egor Tensin <Egor.Tensin@gmail.com>" +FROM base AS builder ENV src_dir=/usr/src/math-server COPY [".", "$src_dir"] @@ -11,17 +11,22 @@ 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" \ - --install /usr/local \ + --install /opt/math-server \ --configuration Release \ -- \ "$src_dir" \ -D ENABLE_TESTS=ON \ - -D Boost_USE_STATIC_LIBS=OFF && \ - rm -rf -- "$src_dir" && \ - apk del --purge --rdepends $build_deps && \ - runtime_deps='boost-filesystem boost-program_options boost-regex boost-unit_test_framework libstdc++' && \ + -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 && \ - /usr/local/bin/math-server-unit-tests --log_level=all + /opt/math-server/bin/math-server-unit-tests --log_level=all -ENTRYPOINT ["/usr/local/bin/math-client"] +ENTRYPOINT ["/opt/math-server/bin/math-client"] CMD ["-c", "2 * 2"] |