The runner does not set the container CMD any more. Instead it populates the container with an execute script (in the squonk work directory) and expects the container to run this automatically. This is achieved by relying on CMD being set to ./execute and the WORKDIR being set to the location of the execute script.
Change the container to...
- Provide a helpful (default)
execute script in the home directory
- Ensure
WORKDIR is set to the execute script's directory
CMD is set to ./execute
The runner does not set the container CMD any more. Instead it populates the container with an
executescript (in the squonk work directory) and expects the container to run this automatically. This is achieved by relying onCMDbeing set to./executeand theWORKDIRbeing set to the location of the execute script.Change the container to...
executescript in the home directoryWORKDIRis set to the execute script's directoryCMDis set to./execute