mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
Keeping NDK r21 for building Mono itself as it's not compatible yet with NDK r22+ (see godotengine/godot-mono-builds#68).
10 lines
228 B
Docker
10 lines
228 B
Docker
FROM fedora:36
|
|
|
|
WORKDIR /root
|
|
|
|
RUN 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
|