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-Shippingline 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
chmodas Docker already sets the permission that every user can execute the file and thechmoditself 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
-RenderOffscreento-nullrhithe project does not exit immediately but the rendering does obviously not work