From 5c7faa01a6ef51469a0c0545bb01df39defcec9d Mon Sep 17 00:00:00 2001 From: Tulir Asokan Date: Mon, 24 Aug 2020 23:28:46 +0300 Subject: [PATCH] Use --no-sandbox by default in docker --- puppet/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet/Dockerfile b/puppet/Dockerfile index acc248f..e9bc1ff 100644 --- a/puppet/Dockerfile +++ b/puppet/Dockerfile @@ -14,4 +14,4 @@ COPY package.json yarn.lock ./ RUN yarn --production && rm -rf node_modules/puppeteer/.local-chromium COPY . /opt/mautrix-amp/puppet -CMD ["yarn", "start", "--config", "/data/config.json", "--browser", "/usr/lib/chromium/chrome"] +CMD ["yarn", "start", "--config", "/data/config.json", "--browser", "/usr/lib/chromium/chrome", "--no-sandbox"]