I would like to create a Tarball which I can deploy on different machines
Steps taken:
// Create tarballdotnet publish --os linux --arch x64 -c Release -t:PublishContainer -p:ContainerArchiveOutputPath=./images/container/container-ui.tar.gz // Load tarballpodman load -i ./images/container/container-ui.tar.gz// Confirm image and get IDpodman image// Run imagepodman run -d -p 8000:3000 --name ui-container <image-id>The image and container load up as expected, however, I get an error on the container logs about how the project's DLL file could not be found.
What am I doing wrong?