]>
Commit | Line | Data |
---|---|---|
98ecb0ea | 1 | # A minimal Docker image with Node 8 and Puppeteer |
162d70f3 | 2 | # |
98ecb0ea TL |
3 | # Based upon: |
4 | # https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker | |
162d70f3 TL |
5 | |
6 | FROM node:8-slim | |
98ecb0ea TL |
7 | |
8 | RUN apt-get update \ | |
9 | # See https://crbug.com/795759 | |
10 | && apt-get install -yq libgconf-2-4 \ | |
11 | # Install latest chrome dev package, which installs the necessary libs to | |
12 | # make the bundled version of Chromium that Puppeteer installs work. | |
13 | && apt-get install -y wget --no-install-recommends \ | |
14 | && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ | |
15 | && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ | |
16 | && apt-get update \ | |
17 | && apt-get install -y google-chrome-unstable --no-install-recommends \ | |
f8f84070 TL |
18 | && rm -rf /var/lib/apt/lists/* |
19 | ||
20 | # Install Puppeteer under /node_modules so it's available system-wide | |
21 | ADD package.json package-lock.json / | |
22 | RUN npm install |