2022-06-30 00:06:35 +08:00
|
|
|
## base image
|
|
|
|
FROM archlinux as base
|
|
|
|
|
|
|
|
RUN pacman -Syuu --noconfirm
|
2022-07-11 07:40:44 +08:00
|
|
|
RUN pacman-db-upgrade
|
2022-06-30 00:06:35 +08:00
|
|
|
|
2022-07-11 07:40:44 +08:00
|
|
|
# nodejs
|
|
|
|
RUN pacman -S --noconfirm --needed nodejs
|
2022-06-30 00:06:35 +08:00
|
|
|
|
2022-07-11 07:44:43 +08:00
|
|
|
# curl for downloading setup-cpp
|
|
|
|
RUN pacman -S --noconfirm --needed curl
|
|
|
|
|
2023-01-18 13:40:21 +08:00
|
|
|
# add setup-cpp.js
|
2022-10-20 05:48:10 +08:00
|
|
|
COPY "./dist/node12" "/"
|
2022-06-30 00:06:35 +08:00
|
|
|
WORKDIR "/"
|
|
|
|
|
|
|
|
# run installation
|
2023-01-18 13:40:21 +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
|
2022-10-06 06:01:51 +08:00
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
CMD ["source", "~/.cpprc"]
|
|
|
|
ENTRYPOINT ["/bin/bash"]
|
2022-06-30 00:06:35 +08:00
|
|
|
|
|
|
|
|
|
|
|
#### Building
|
2023-01-19 22:02:27 +08:00
|
|
|
FROM base as builder
|
2022-06-30 00:06:35 +08:00
|
|
|
COPY ./dev/cpp_vcpkg_project /home/app
|
|
|
|
WORKDIR /home/app
|
|
|
|
RUN bash -c 'source ~/.cpprc \
|
|
|
|
&& task build'
|
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
|
2022-06-30 00:06:35 +08:00
|
|
|
### Running environment
|
|
|
|
# use a distroless image or ubuntu:22.04 if you wish
|
2023-01-19 22:02:27 +08:00
|
|
|
FROM gcr.io/distroless/cc as runner
|
2022-06-30 00:06:35 +08:00
|
|
|
# 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"]
|