mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
Notably LLVM 14 on F36 doesn't seem to play nice with macOS builds. We probably need to wait for Xcode 14 to have support for LLVM 14. Going back to F35 also avoids issues with autoconf 2.71.
11 lines
285 B
Docker
11 lines
285 B
Docker
FROM fedora:35
|
|
|
|
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
|