Hi everybody,I want to run a packaged project inside an official runtime container from Epic. Yet I run into the problem that it starts with the following output to the shell:
5.5.4-37670630+UE5 1013 0
Disabling core dumps.
Here are the steps I go through before running the project inside the container:
- Build the project inside the official unreal container
- Copied the build outside via a shared volume
- Removed the
chmod +x *-Linux-Shipping
line from the start up script - Containerize the project based on the
ghcr.io/epicgames/unreal-engine:runtime
- Start the project inside the container via
./Project.sh -RenderOffscreen
- Receive the above output
Note:
- I removed the
chmod
as Docker already sets the permission that every user can execute the file and thechmod
itself caused permission issues inside the container as it would require root access - The build itself with all its modifications was tested on a native Linux machine as well and worked without any problems
- When I change the
-RenderOffscreen
to-nullrhi
the project does not exit immediately but the rendering does obviously not work