We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c474981 commit 1761e91Copy full SHA for 1761e91
packages/skin-database/shooter.js
@@ -31,7 +31,11 @@ export default class Shooter {
31
this._log("init()");
32
this._log("Going to launch puppeteer");
33
this._browser = await puppeteer.launch({
34
- args: ["--disable-dev-shm-usage"],
+ args: [
35
+ "--disable-dev-shm-usage",
36
+ "--no-sandbox",
37
+ "--disable-setuid-sandbox",
38
+ ],
39
});
40
this._log("Opening new page");
41
this._page = await this._browser.newPage();
0 commit comments