-
Notifications
You must be signed in to change notification settings - Fork 15
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
How to generate exec form (instead of shell form)? #22
Comments
Well, |
|
@ad-si I agree. That function was not very well thought out when originally created. Your second hack is the cleanest one with now. I'll change that up too along with the changes for |
For future reference: With language extensions it must be used like this: {-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE OverloadedLists #-}
entrypoint $ show (["yarn", "start", "--"] :: [String]) |
https://docs.docker.com/engine/reference/builder/#entrypoint
ENTRYPOINT ["yarn", "start", "--"]
vsENTRYPOINT yarn start --
How can I generate the exec form?
The text was updated successfully, but these errors were encountered: