Files
godot-builder-image/Dockerfile.base

13 lines
322 B
Docker
Raw Normal View History

2025-12-02 10:11:21 +01:00
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