X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Dockerfile;h=2e1d916b6a422ba5992cefa61ab67ef02a65f8b1;hb=4e7c52141ab2170730089e93fb732aa1baba1b2f;hp=522c5068ce9927857c39694fd8c6032ff2b06b9a;hpb=98a23b7226241eb6b79a7ae8aac97e4b93b4634a;p=github%2Ffretlink%2Fdocker-puppeteer.git diff --git a/Dockerfile b/Dockerfile index 522c506..2e1d916 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Based upon: # https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker -FROM node:10.14.0-slim@sha256:5aaef0bf16a700696c76e0902241aef6f4067e7e13255bddab835080b4a8ed1b +FROM node:10.15.1-slim@sha256:f584009b47eb352e7ae0a550fb9394533dc9b80f7aa83d50ef81657358412d0e RUN apt-get update \ # See https://crbug.com/795759 @@ -15,8 +15,10 @@ RUN apt-get update \ && 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/* \ + && wget --quiet https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -O /usr/sbin/wait-for-it.sh \ + && chmod +x /usr/sbin/wait-for-it.sh # 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