mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
This saves us from pulling gtk2 and gtk3 as weak deps of perl and git or whatnot... And we don't need to pull in all the documentation on Ubuntu. Also ensures that we properly run `dnf clean all` after each installation.
11 lines
256 B
Docker
11 lines
256 B
Docker
FROM fedora:30
|
|
|
|
WORKDIR /root
|
|
|
|
RUN dnf -y upgrade --setopt=install_weak_deps=False && \
|
|
dnf -y install --setopt=install_weak_deps=False \
|
|
bash bzip2 curl git make patch pkgconfig python3 scons unzip which xz && \
|
|
dnf clean all
|
|
|
|
CMD /bin/true
|