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
|
2023-05-01 17:24:36 +08:00
|
|
|
RUN dnf -y install nodejs npm curl git && dnf clean all \
|
|
|
|
&& npm install -g pnpm
|
2022-07-11 07:44:43 +08:00
|
|
|
|
|
|
|
|
2023-04-17 17:14:02 +08:00
|
|
|
#### Building
|
|
|
|
FROM base AS builder
|
|
|
|
## https://github.com/ever0de/pnpm-docker-root-bug#how-to-fix
|
|
|
|
WORKDIR /workspace
|
|
|
|
COPY . .
|
|
|
|
RUN pnpm install
|
|
|
|
|
|
|
|
|
|
|
|
#### setup-cpp
|
|
|
|
FROM base AS setup-cpp
|
|
|
|
# add setup-cpp.js
|
|
|
|
COPY --from=builder /workspace/dist/node18 /
|
|
|
|
# run installation
|
2023-04-18 19:37: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
|
2023-01-19 22:02:27 +08:00
|
|
|
CMD ["source", "~/.cpprc"]
|
2023-04-17 17:14:02 +08:00
|
|
|
ENTRYPOINT ["/bin/bash"]
|
2022-07-11 07:44:43 +08:00
|
|
|
|
2023-01-19 22:02:27 +08:00
|
|
|
|
2023-04-17 17:14:02 +08:00
|
|
|
#### Building (example)
|
|
|
|
FROM setup-cpp AS example-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
|
|
|
|
2023-04-17 17:14:02 +08:00
|
|
|
#### Running environment
|
2022-07-11 07:44:43 +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-07-11 07:44:43 +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-07-11 07:44:43 +08:00
|
|
|
WORKDIR /home/app/
|
|
|
|
ENTRYPOINT ["./my_exe"]
|