mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
- Update base image from Fedora 33 to Fedora 34 (newer GCC, Clang, MinGW and binutils). - Update Emscripten for classical builds from 2.0.15 to 2.0.25. - Update Android SDK tools to latest version, and build-tools from 30.0.1 to 30.0.3. - Update osxcross and ios cctools-port to latest commits. - Update iOS Mono build's min target version to match Godot's buildsystem. See #83 for details.
11 lines
285 B
Docker
11 lines
285 B
Docker
FROM fedora:34
|
|
|
|
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.1.0
|
|
|
|
CMD /bin/bash
|