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.