Files
godot-builder-image/Dockerfile.windows
Olof Pettersson 19fd65f9cd
Some checks failed
Publish Builder Images / build-base (push) Successful in 30s
Publish Builder Images / build-windows (push) Has been cancelled
Try installing wget
2025-12-02 11:00:10 +01:00

19 lines
601 B
Docker

ARG img_version
FROM godot-fedora:${img_version}
RUN dnf -y install --setopt=install_weak_deps=False \
mingw32-gcc mingw32-gcc-c++ mingw32-winpthreads-static mingw64-gcc mingw64-gcc-c++ mingw64-winpthreads-static
ENV LLVM_MINGW_NAME=llvm-mingw-20250528-ucrt-ubuntu-22.04-x86_64
# Use a wildcard so we don't have to worry about variable expansion issues in COPY
COPY llvm-mingw-*.tar.xz .
# Extract and Install
RUN 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