mirror of
https://github.com/godotengine/build-containers.git
synced 2026-01-05 22:10:22 +03:00
Use /bin/bash as default CMD instruction
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 ```
This commit is contained in:
@@ -25,4 +25,4 @@ RUN dnf -y install --setopt=install_weak_deps=False \
|
||||
rm -rf /root/.wine/drive_c/users/root/Temp/* && \
|
||||
rm -rf /root/.cache
|
||||
|
||||
CMD /usr/bin/bash
|
||||
CMD /bin/bash
|
||||
|
||||
Reference in New Issue
Block a user