2022-06-30 00:06:35 +08:00
|
|
|
## base image
|
|
|
|
FROM archlinux as base
|
|
|
|
|
2023-07-16 06:05:41 +08:00
|
|
|
# install nodejs
|
|
|
|
RUN pacman -Syuu --noconfirm && \
|
|
|
|
pacman-db-upgrade && \
|
|
|
|
pacman -S --noconfirm --needed nodejs
|
2022-07-11 07:44:43 +08:00
|
|
|
|
2023-07-16 06:05:41 +08:00
|
|
|
# add setup-cpp.js (built outside of this dockerfile)
|
2023-07-16 06:41:58 +08:00
|
|
|
COPY "./dist/legacy" "/"
|
2022-06-30 00:06:35 +08:00
|
|
|
|
2023-04-17 17:14:02 +08:00
|
|
|
# run installation
|
2023-07-16 06:05:41 +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-06-30 00:06:35 +08:00
|
|
|
|
2023-07-16 06:05:41 +08:00
|
|
|
ENTRYPOINT ["/bin/bash"]
|
2022-06-30 00:06:35 +08:00
|
|
|
|
2023-04-17 17:14:02 +08:00
|
|
|
#### Building (example)
|
2023-07-16 06:50:55 +08:00
|
|
|
FROM base AS example-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-04-17 17:14:02 +08:00
|
|
|
#### Running environment
|
2022-06-30 00:06:35 +08:00
|
|
|
# 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
|
2023-04-17 17:14:02 +08:00
|
|
|
COPY --from=example-builder /home/app/build/my_exe/Release/ /home/app/
|
2022-06-30 00:06:35 +08:00
|
|
|
WORKDIR /home/app/
|
|
|
|
ENTRYPOINT ["./my_exe"]
|