-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: docker-workflow-plugin
-
Environment:Ubuntu 18.04
Jenkins 2.150
docker-workflow 1.21
When running an image with an entrypoint:
> ERROR: The container started but didn't run the expected command.
However, when I inspect manually `docker top <container-id>`, I do see the `cat` command right there.
My entrypoint is of the form:
#!/bin/bash
set -e
source "/opt/some/source.bash"
exec "$@"
Â
Â