mirror of
https://github.com/godotengine/build-containers.git
synced 2026-01-05 22:10:22 +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.
8 lines
255 B
Docker
8 lines
255 B
Docker
FROM godot-fedora:latest
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
xorg-x11-server-Xvfb mesa-dri-drivers libXcursor libXinerama libXrandr libXi alsa-lib pulseaudio-libs java-1.8.0-openjdk-devel && \
|
|
dnf clean all
|
|
|
|
CMD ['/bin/bash']
|