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

28 lines
611 B
Plaintext
Raw Normal View History

## base image
FROM fedora:40 as setup-cpp-fedora-mingw
2024-03-24 15:20:20 +08:00
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
# install nodejs
RUN dnf -y install nodejs npm && \
2024-03-24 15:20:20 +08:00
# install the compiler and tools
2024-03-24 15:20:20 +08:00
node /usr/lib/setup-cpp/setup-cpp.js \
--compiler mingw \
--cmake true \
--ninja true \
--task true \
--vcpkg true \
--python true \
--make true \
--cppcheck true \
--gcovr true \
--doxygen true \
--ccache true \
--powershell true && \
# cleanup
dnf clean all && \
rm -rf /tmp/*
ENTRYPOINT ["/bin/bash"]