From: Tim Lucas Date: Wed, 6 Feb 2019 00:10:56 +0000 (+1100) Subject: Add wait-for-it.sh X-Git-Tag: v1.12.3~2^2~2 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=65cd9245fa692fe7bb613960510ba513b2a70a3d;p=github%2Ffretlink%2Fdocker-puppeteer.git Add wait-for-it.sh --- diff --git a/Dockerfile b/Dockerfile index 0d53911..2e1d916 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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