Error after deploy, WARN could not unmount /rootfs: EINVAL: Invalid argument

This error is a red herring. You can ignore it.

It looks like your app is exiting immediately, after printing a help text. This makes me think that your CMD in your Dockerfile is not configured properly. I think you need to add start add the end, for example:

CMD ["/app/bin/sandwiches", "start"]
1 Like