We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The reason is because the cmd is node (and there's no entrypoint), node cannot handle being run as pid 1.
cmd
node
entrypoint
A simple solution would be to add tini to the apk add and then add entrypoint ["tini"] to the Dockerfile.
tini
apk add
entrypoint ["tini"]
Dockerfile
The text was updated successfully, but these errors were encountered:
Fixed by #427, thanks!
Sorry, something went wrong.
No branches or pull requests
The reason is because the
cmd
isnode
(and there's noentrypoint
), node cannot handle being run as pid 1.A simple solution would be to add
tini
to theapk add
and then addentrypoint ["tini"]
to theDockerfile
.The text was updated successfully, but these errors were encountered: