Files
godot-builder-image/Dockerfile.windows
Olof Pettersson a162ed2d2a
All checks were successful
Publish Builder Images / setup (push) Successful in 30s
Publish Builder Images / build-base (push) Successful in 51s
Publish Builder Images / build-targets (Dockerfile.linux, linux) (push) Successful in 2m2s
Publish Builder Images / build-targets (Dockerfile.windows, windows) (push) Successful in 3m36s
add python to windows for d12 pre-requisites
2026-05-19 11:02:36 +02:00

18 lines
703 B
Docker

ARG img_version
FROM godot-fedora:${img_version}
RUN dnf -y install --setopt=install_weak_deps=False \
python mingw32-gcc mingw32-gcc-c++ mingw32-winpthreads-static mingw64-gcc mingw64-gcc-c++ mingw64-winpthreads-static
ENV LLVM_MINGW_VERSION=20250528
ENV LLVM_MINGW_NAME=llvm-mingw-${LLVM_MINGW_VERSION}-ucrt-ubuntu-22.04-x86_64
# DIRECT DOWNLOAD (Now works because MTU is fixed!)
RUN curl -LO "https://github.com/mstorsjo/llvm-mingw/releases/download/${LLVM_MINGW_VERSION}/${LLVM_MINGW_NAME}.tar.xz" && \
tar xf "${LLVM_MINGW_NAME}.tar.xz" && \
rm -f "${LLVM_MINGW_NAME}.tar.xz" && \
mv "${LLVM_MINGW_NAME}" /root/llvm-mingw
ENV PATH="/root/llvm-mingw/bin:${PATH}"
CMD /bin/bash