setup-cpp/dev/docker/__tests__/fedora.dockerfile

30 lines
874 B
Plaintext
Raw Normal View History

2022-07-11 07:44:43 +08:00
## base image
FROM fedora as base
# install nodejs and setup-cpp
RUN dnf -y install nodejs npm && \
npm install -g setup-cpp
2022-07-11 07:44:43 +08:00
# add setup-cpp.js (built outside of this dockerfile)
COPY "./dist/node18" "/"
2022-07-11 07:44:43 +08:00
# 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
2022-07-11 07:44:43 +08:00
ENTRYPOINT ["/bin/bash"]
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'
#### 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"]