2022-07-11 07:44:43 +08:00
|
|
|
## base image
|
|
|
|
FROM fedora as base
|
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
# nodejs and curl for downloading setup-cpp
|
|
|
|
RUN dnf -y install nodejs curl
|
2022-07-11 07:44:43 +08:00
|
|
|
|
2023-01-18 13:40:21 +08:00
|
|
|
# add setup-cpp.js
|
2022-10-20 05:48:10 +08:00
|
|
|
COPY "./dist/node12" "/"
|
2022-07-11 07:44:43 +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 --powershell true
|
2022-07-11 07:44:43 +08:00
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
CMD ["source", "~/.cpprc"]
|
2022-07-11 07:44:43 +08:00
|
|
|
ENTRYPOINT [ "/bin/bash" ]
|
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
|
2022-07-11 07:44:43 +08:00
|
|
|
#### Building
|
2023-01-19 22:02:27 +08:00
|
|
|
FROM base as builder
|
2022-07-11 07:44:43 +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-07-11 07:44:43 +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-07-11 07:44:43 +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"]
|