2022-06-30 00:06:35 +08:00
|
|
|
## base image
|
2023-07-16 09:06:32 +08:00
|
|
|
FROM archlinux:base as setup-cpp-arch
|
|
|
|
|
|
|
|
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
|
2022-06-30 00:06:35 +08:00
|
|
|
|
2023-07-16 06:05:41 +08:00
|
|
|
RUN pacman -Syuu --noconfirm && \
|
|
|
|
pacman-db-upgrade && \
|
2023-07-16 09:06:32 +08:00
|
|
|
# install nodejs
|
|
|
|
pacman -S --noconfirm --needed nodejs npm && \
|
|
|
|
# install setup-cpp
|
2023-07-16 10:23:12 +08:00
|
|
|
npm install -g setup-cpp@v0.31.0 && \
|
2023-07-16 09:06:32 +08:00
|
|
|
# install the compiler and tools
|
|
|
|
node /usr/lib/setup-cpp/setup-cpp.js \
|
|
|
|
--compiler llvm \
|
|
|
|
--cmake true \
|
|
|
|
--ninja true \
|
|
|
|
--task true \
|
|
|
|
--vcpkg true \
|
|
|
|
--python true \
|
|
|
|
--make true \
|
|
|
|
--cppcheck true \
|
|
|
|
--gcovr true \
|
|
|
|
--doxygen true \
|
|
|
|
--ccache true && \
|
|
|
|
# arch cleanup
|
|
|
|
pacman -Scc --noconfirm && \
|
|
|
|
rm -rf /var/cache/pacman/pkg/* && \
|
|
|
|
rm -rf /tmp/*
|
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 09:06:32 +08:00
|
|
|
FROM setup-cpp-arch 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-04-17 17:14:02 +08:00
|
|
|
#### Running environment
|
2023-07-16 09:06:32 +08:00
|
|
|
# use a fresh image as the runner
|
|
|
|
FROM archlinux:base as runner
|
|
|
|
|
2022-06-30 00:06:35 +08:00
|
|
|
# copy the built binaries and their runtime dependencies
|
2023-07-16 09:06:32 +08:00
|
|
|
COPY --from=builder /home/app/build/my_exe/Release/ /home/app/
|
2022-06-30 00:06:35 +08:00
|
|
|
WORKDIR /home/app/
|
|
|
|
ENTRYPOINT ["./my_exe"]
|