mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
This reverts #105 as we found that the MinGW/GCC/binutils combinations in Fedora 35 generates broken Windows binaries. To workaround the issue with LLVM 14 on F36, we build Clang 13.0.1 from source for osxcross in the OSX container. This matches Xcode 13.
11 lines
285 B
Docker
11 lines
285 B
Docker
FROM fedora:36
|
|
|
|
WORKDIR /root
|
|
|
|
RUN dnf -y upgrade --setopt=install_weak_deps=False && \
|
|
dnf -y install --setopt=install_weak_deps=False \
|
|
bash bzip2 curl file findutils git make nano patch pkgconfig python3-pip unzip which xz && \
|
|
pip install scons==4.3.0
|
|
|
|
CMD /bin/bash
|