X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Dockerfile;h=773f5722d4194a12da46dd8ee52a462c513d05a7;hb=HEAD;hp=bac6f8f41089b3f0f7e8bf0606e7bd8cf6886c8d;hpb=4f8096f8b2737965465364abeb6fe564213987cb;p=github%2Ffretlink%2Fdocker-puppeteer.git diff --git a/Dockerfile b/Dockerfile index bac6f8f..773f572 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,20 +3,35 @@ # Based upon: # https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker -FROM node:10.12.0-slim@sha256:62417b202fc4c8b9a8ef16e94b46a70ebb65b5adb57b581cd046b28bf747e7f3 - +FROM node:10.15.3-slim@sha256:5a48598688f771a9140fdef31585dbe67b313b1e29439cbd9b81ebb25aeca517 + RUN apt-get update \ # See https://crbug.com/795759 && apt-get install -yq libgconf-2-4 \ # Install latest chrome dev package, which installs the necessary libs to # make the bundled version of Chromium that Puppeteer installs work. - && apt-get install -y wget --no-install-recommends \ + # Also install system deps such as make, psmisc to have utily functions (such as fuser, peekfd) + && apt-get install -y wget make psmisc git --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 --no-install-recommends \ - && rm -rf /var/lib/apt/lists/* + && rm -rf /var/lib/apt/lists/* \ + +# Tell Puppeteer to skip installing Chrome. We'll be using the installed package. +# you'll need to launch puppeteer with: +# browser.launch({executablePath: 'google-chrome-unstable'}) +ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true # Install Puppeteer under /node_modules so it's available system-wide ADD package.json package-lock.json / -RUN npm install \ No newline at end of file +RUN npm install + +# 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