mirror of
https://github.com/godotengine/build-containers.git
synced 2026-01-04 18:10:06 +03:00
The previous `['/bin/bash']` was not working, running the image with `podman run -it <name>` would evaluate to: ``` > sh -c ['/bin/bash'] sh: [/bin/bash]: No such file or directory ```
10 lines
365 B
Docker
10 lines
365 B
Docker
ARG mono_version
|
|
FROM godot-mono:${mono_version}
|
|
ARG mono_version
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
xorg-x11-server-Xvfb libX11-devel libXcursor-devel libXrandr-devel libXinerama-devel libXi-devel alsa-lib-devel pulseaudio-libs-devel libudev-devel mesa-libGL-devel mesa-libGLU-devel mesa-dri-drivers && \
|
|
dnf clean all
|
|
|
|
CMD /bin/bash
|