Closed jonpliske closed 3 years ago
seems good to me? i don't run docker though--- @trentgill ?
Similarly i’ve never used the docker image. Unsure of the github actions use it, or if that’s separate?
CC @simonvanderveldt @csboling who may have some insight / be able to confirm.
I don't know if any other commands than what's currently defined in the entrypoint (which is make) are to be run? Personally I can't think of any so I'd just remove all arguments in the readme so it just runs the container and will use the entrypoint as defined in the image.
This change updates the documentation to reflect that the
ENTRYPOINT
needs to be explicitly set tobash
, otherwise the container execution will interpret "bash" as an argument.I believe this could also be resolved via changes to the Dockerfile: changing
ENTRYPOINT
toCMD
will allow the behavior you describe in the doc. I'm not sure of the exact use case (i.e. where else this container is run...), but if you're trying to set the default but overridable execution flow thenCMD
might be a better fit.