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

26 lines
566 B
Plaintext
Raw Normal View History

## base image
FROM fedora:38 as setup-cpp-fedora
# install nodejs
2023-07-16 09:33:56 +08:00
RUN dnf -y install nodejs npm && \
# install setup-cpp
2023-07-16 10:23:12 +08:00
npm install -g setup-cpp@v0.31.0 && \
# install the compiler and tools
setup-cpp \
--compiler llvm \
--cmake true \
--ninja true \
--task true \
--vcpkg true \
--python true \
--make true \
--cppcheck true \
--gcovr true \
--doxygen true \
--ccache true && \
# cleanup
dnf clean all && \
rm -rf /tmp/*
ENTRYPOINT ["/bin/bash"]