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

29 lines
705 B
Plaintext
Raw Normal View History

## base image
2024-04-03 15:15:43 +08:00
FROM archlinux:base AS setup-cpp-arch-mingw
2024-03-24 15:20:20 +08:00
COPY "./dist/legacy" "/usr/lib/setup-cpp/"
RUN pacman -Syuu --noconfirm && \
pacman-db-upgrade && \
2024-04-03 15:15:43 +08:00
# install nodejs
pacman -S --noconfirm --needed nodejs npm && \
2024-04-03 15:15:43 +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 && \
2024-04-03 15:15:43 +08:00
# arch cleanup
pacman -Scc --noconfirm && \
rm -rf /var/cache/pacman/pkg/* && \
rm -rf /tmp/*
ENTRYPOINT ["/bin/bash"]