Files
godot-builder-image/Dockerfile.base
Olof Pettersson 6a58136009
Some checks failed
Publish Builder Images / build-and-push (push) Failing after 1m32s
Try new build container toolchain
2025-12-02 10:11:21 +01:00

13 lines
322 B
Docker

FROM fedora:42
WORKDIR /root
ENV DOTNET_NOLOGO=1
ENV DOTNET_CLI_TELEMETRY_OPTOUT=1
RUN dnf -y install --setopt=install_weak_deps=False \
bash binutils bzip2 curl file findutils gettext git make nano patch pkgconfig python3-pip unzip which xz \
dotnet-sdk-8.0 && \
pip install scons==4.9.1
CMD /bin/bash