-
Notifications
You must be signed in to change notification settings - Fork 98
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
Parsing of entrypoints #507
Comments
hi @Engrammae - thanks. the command line interface seems to be interpreting '-c' as a new option instead of a string literal value. for example this works this is related to pallets/click#249 but i do not see an easy way to get around this. the linked issue mentions |
Hi @kaczmarj , |
could we just modify slightly the value for entrypoint as suggested in #515? |
Hey!
I would like to add
ENTRYPOINT ["bash", "-c"]
to my Dockerfile using the neurodocker option--entrypoint TUPLE
. I tried adding it with and without quotation marks (--entrypoint bash -c
.--entrypoint "bash" "-c"
or--entrypoints 'bash' '-c'
) but I get the following error:I guess the parameter
-c
is interpreted as an option of thegenerate docker
command.This can be reproduced by running the following script:
If one could get this to work these lines could be a workaround for #506 :
The text was updated successfully, but these errors were encountered: