setup-cpp/dev/docker/fedora_node.dockerfile

44 lines
1.1 KiB
Plaintext
Raw Normal View History

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
# install pnpm
RUN npm install -g pnpm
2022-07-11 07:44:43 +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
RUN . $NVM_DIR/nvm.sh && 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"]
ENTRYPOINT ["/bin/bash"]
2022-07-11 07:44:43 +08:00
2023-01-19 22:02:27 +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
#### 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
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"]