2022-05-03 13:37:10 +08:00
|
|
|
FROM ubuntu:22.04 AS base
|
2022-02-15 16:25:37 +08:00
|
|
|
|
|
|
|
RUN apt-get update -qq
|
|
|
|
RUN apt-get install -y --no-install-recommends nodejs
|
2021-09-19 00:38:12 +08:00
|
|
|
|
|
|
|
# add setup_cpp.js
|
2022-10-20 05:48:10 +08:00
|
|
|
COPY "./dist/node12" "/"
|
2021-09-18 20:06:59 +08:00
|
|
|
WORKDIR "/"
|
2021-09-19 00:38:12 +08:00
|
|
|
|
|
|
|
# run installation
|
2022-08-08 06:20:34 +08:00
|
|
|
RUN node ./setup_cpp.js --compiler llvm --cmake true --ninja true --cppcheck true --ccache true --vcpkg true --doxygen true --gcovr true --task true --powershell true
|
2021-09-19 00:38:12 +08:00
|
|
|
|
2022-06-30 00:06:35 +08:00
|
|
|
# clean up
|
|
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN rm -rf /tmp/*
|
|
|
|
|
2022-04-27 13:33:36 +08:00
|
|
|
CMD source ~/.cpprc
|
2022-04-27 13:52:01 +08:00
|
|
|
ENTRYPOINT [ "/bin/bash" ]
|
2022-02-14 11:48:58 +08:00
|
|
|
|
2022-04-27 13:33:36 +08:00
|
|
|
#### Building
|
|
|
|
FROM base AS builder
|
2022-06-30 00:06:35 +08:00
|
|
|
COPY ./dev/cpp_vcpkg_project /home/app
|
2022-04-27 13:33:36 +08:00
|
|
|
WORKDIR /home/app
|
2022-05-15 18:53:26 +08:00
|
|
|
RUN bash -c 'source ~/.cpprc \
|
|
|
|
&& task build'
|
2022-04-27 13:33:36 +08:00
|
|
|
|
|
|
|
### Running environment
|
2022-05-03 13:37:10 +08:00
|
|
|
# use a distroless image or ubuntu:22.04 if you wish
|
2022-04-27 13:33:36 +08:00
|
|
|
FROM gcr.io/distroless/cc
|
|
|
|
# copy the built binaries and their runtime dependencies
|
|
|
|
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
|
|
|
|
WORKDIR /home/app/
|
|
|
|
ENTRYPOINT ["./my_exe"]
|