From 162d70f3784124050ac7c705cecb4e395733642e Mon Sep 17 00:00:00 2001 From: Tim Lucas Date: Thu, 15 Mar 2018 23:57:03 +1100 Subject: Initial commit --- Dockerfile | 47 +++++++++++++++++++++++++++++++++++++++++++++++ README | 18 ++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 Dockerfile create mode 100644 README diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0e46b41 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,47 @@ +# Copy and pasted from: +# https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker +# +# The only change is locking it down to a specific version of Puppeteer in the +# `npm install` line. + +FROM node:8-slim + +# See https://crbug.com/795759 +RUN apt-get update && apt-get install -yq libgconf-2-4 + +# Install latest chrome dev package and fonts to support major charsets (Chinese, Japanese, Arabic, Hebrew, Thai and a few others) +# Note: this installs the necessary libs to make the bundled version of Chromium that Puppeteer +# installs, work. +RUN apt-get update && apt-get install -y wget --no-install-recommends \ + && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ + && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ + && apt-get update \ + && apt-get install -y google-chrome-unstable fonts-ipafont-gothic fonts-wqy-zenhei fonts-thai-tlwg fonts-kacst ttf-freefont \ + --no-install-recommends \ + && rm -rf /var/lib/apt/lists/* \ + && apt-get purge --auto-remove -y curl \ + && rm -rf /src/*.deb + +# It's a good idea to use dumb-init to help prevent zombie chrome processes. +ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64 /usr/local/bin/dumb-init +RUN chmod +x /usr/local/bin/dumb-init + +# Uncomment to skip the chromium download when installing puppeteer. If you do, +# you'll need to launch puppeteer with: +# browser.launch({executablePath: 'google-chrome-unstable'}) +# ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true + +# Install puppeteer so it's available in the container. +RUN npm i puppeteer@1.1.1 + +# Add user so we don't need --no-sandbox. +RUN groupadd -r pptruser && useradd -r -g pptruser -G audio,video pptruser \ + && mkdir -p /home/pptruser/Downloads \ + && chown -R pptruser:pptruser /home/pptruser \ + && chown -R pptruser:pptruser /node_modules + +# Run everything after as non-privileged user. +USER pptruser + +ENTRYPOINT ["dumb-init", "--"] +CMD ["google-chrome-unstable"] \ No newline at end of file diff --git a/README b/README new file mode 100644 index 0000000..b58eff5 --- /dev/null +++ b/README @@ -0,0 +1,18 @@ +# Docker Puppeteer + +A Puppeteer Docker image based on the code here (Apache 2.0 license): +https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker + +An example for how to use: + +```Dockerfile +FROM buildkite/puppeteer + +RUN npm install mocha +ENV PATH="${PATH}:/node_modules/.bin" + +# The `tests` dir is expected to be mounted into here +WORK_DIR /home/pptr + +CMD ["mocha", "--recursive", "tests"] +``` \ No newline at end of file -- cgit v1.2.3