I have a really long command line for the default process due to a number of arguments. I think the easiest would be to create a script (for eg.run.sh
) and then call this script in your ENTRYPOINT
or CMD
. I'm wondering if there is a way to make your ENTRYPOINT
or CMD
multiline (the way we write RUN
). For eg.
ENTRYPOINT["/path/myprocess",
"arg1",
"arg2" ]
I was thinking this is a valid syntax since the format is json. However, docker build
throws the error
Step 14 : ENTRYPOINT[
Unknown instruction: ENTRYPOINT[
Is there a way I can split the ENTRYPOINT
to multiple lines?