-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CWL 1.0 CT173 Test Docker ENTRYPOINT usage #86
Comments
The tool specifies the When calrissian builds up a container to run, it appears to be providing the command in a way that's not compatible with the entrypoint. YAML from the pod created to run this tool:
|
According to https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#notes: Docker We're building both in Lines 205 to 206 in 5cba82c
Lines 208 to 219 in 5cba82c
|
At first glance it might seem like we could straighten this out cleanly, but as mentioned in the comments, we need to provide the command as a space-separated string, and needs to be an argument to a shell. Otherwise we cannot redirect easily inside the container. It might work to push the |
I tried removing the
Seems like there's no clean/simple way out of this. We wrap commands in a shell ( One path would be to inspect the image and incorporate its entrypoint, but that's not a terribly robust solution. I think the only clean solution here would be if we had another way to redirect without using a shell. That would let us simplify args down to just the Job's |
The text was updated successfully, but these errors were encountered: