mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
10 lines
246 B
Docker
10 lines
246 B
Docker
FROM fedora:43
|
|
|
|
WORKDIR /root
|
|
|
|
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 && \
|
|
pip install scons==4.10.0
|
|
|
|
CMD /bin/bash
|