mirror of
https://github.com/godotengine/build-containers.git
synced 2026-01-04 18:10:06 +03:00
- Fedora 40 - SCons 4.7.0 - MinGW 11.0.1 with GCC 14.1.1 and binutils 2.41 - Xcode 15.5 (macOS 14.5, iOS 17.5) - Emscripten 3.1.61
14 lines
314 B
Docker
14 lines
314 B
Docker
FROM fedora:40
|
|
|
|
WORKDIR /root
|
|
|
|
ENV DOTNET_NOLOGO=1
|
|
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
bash bzip2 curl file findutils gettext git make nano patch pkgconfig python3-pip unzip which xz \
|
|
dotnet-sdk-8.0 && \
|
|
pip install scons==4.7.0
|
|
|
|
CMD /bin/bash
|