Skip to content

aofdev/alpine-puppeteer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

10 Commits
Β 
Β 
Β 
Β 

Repository files navigation

alpine-puppeteer 🐳

Minimal Puppeteer with Alpine Linux 🐳

Installation

docker pull aofdev/alpine-puppeteer

Usage

When launching Chrome, be sure to use the chromium-browser executable:

const browser = await puppeteer.launch({
  executablePath: process.env.CHROME_BIN,
  args: [
     '--no-sandbox',
     '--disable-setuid-sandbox'
  ]
})