2025-03-05 19:11:14 +08:00
|
|
|
FROM aminya/setup-cpp-arch:latest AS setup-cpp-arch-mingw
|
2023-07-20 05:31:19 +08:00
|
|
|
|
2025-02-23 18:52:45 +08:00
|
|
|
# install mingw/powershell
|
2025-03-02 19:24:07 +08:00
|
|
|
RUN node --enable-source-maps /usr/lib/setup-cpp/setup-cpp.mjs \
|
2025-02-23 18:52:45 +08:00
|
|
|
--compiler mingw \
|
|
|
|
|
--powershell true && \
|
2024-04-03 15:15:43 +08:00
|
|
|
# arch cleanup
|
2023-07-20 05:31:19 +08:00
|
|
|
pacman -Scc --noconfirm && \
|
|
|
|
|
rm -rf /var/cache/pacman/pkg/* && \
|
|
|
|
|
rm -rf /tmp/*
|
|
|
|
|
|
2025-03-02 17:00:14 +08:00
|
|
|
SHELL ["/bin/bash", "-l", "-c"]
|
|
|
|
|
ENTRYPOINT ["/bin/bash", "-l"]
|