Fatal build crash: New Node.js app via Dockerlile exiting with error code 0

Your dockerfile does not appear to contain a command? It normally would look something like:

CMD [ "yarn", "start" ]

Separately, it looks like your builder step is based on Node’s default (debian), but you final step is based on alpine. This is not a good idea. Either specify alpine on both or neither.

1 Like