-
Beta Was this translation helpful? Give feedback.
Answered by
yhatt
Jul 26, 2024
Replies: 2 comments 3 replies
This comment has been hidden.
This comment has been hidden.
-
This error is about Chrome's process sandboxing. Marp CLI is automatically detecting whether it was executed inside a container such as Docker and Podman (powered by You can try to add ENV CHROME_NO_SANDBOX=1 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
yhatt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This error is about Chrome's process sandboxing.
Marp CLI is automatically detecting whether it was executed inside a container such as Docker and Podman (powered by
is-inside-container
package), and disable incompatible process sandboxing automatically. But this detection may not work in some PaaS platform like Heroku.You can try to add
CHROME_NO_SANDBOX
environment value into your container image as1
, to disable Chrome's process sandboxing forcibly.ENV CHROME_NO…