Deploying a Puppeteer app in Docker triggers sandbox permission issues. How can I supply the --no-sandbox flag via the startup command or Dockerfile?
FROM debian:latest
RUN apt-get update && apt-get install -y chromium
CMD ["chromium", "--headless", "--no-sandbox"]
docker run -p 8080:8080 project_image