You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`serve` is treated as a shell form and hence runs:
```
/sbin/tini -- /usr/local/bin/frontend /bin/sh -c serve
```
Which is incorrect. Instead, we want `["serve"]` which is treated as parameters
to `ENTRYPOINT` by Docker, i.e.:
```
/sbin/tini -- /usr/local/bin/frontend serve
```
0 commit comments