aboutsummaryrefslogtreecommitdiffhomepage
path: root/Dockerfile
diff options
context:
space:
mode:
authorTim Lucas <t@toolmantim.com>2019-02-06 11:31:56 +1100
committerGitHub <noreply@github.com>2019-02-06 11:31:56 +1100
commit4e7c52141ab2170730089e93fb732aa1baba1b2f (patch)
tree4203de845f246013e763db95da3f0ea1fd4f1410 /Dockerfile
parentf2ea4b9e74b9a8110490ede83d195565f57c004d (diff)
parent9f994586f630ebc675710563f30fcf1c5bcfcf48 (diff)
downloaddocker-puppeteer-4e7c52141ab2170730089e93fb732aa1baba1b2f.tar.gz
docker-puppeteer-4e7c52141ab2170730089e93fb732aa1baba1b2f.tar.zst
docker-puppeteer-4e7c52141ab2170730089e93fb732aa1baba1b2f.zip
Merge pull request #56 from buildkite/add-example
Move example into it's own folder
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 0d53911..2e1d916 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -15,8 +15,10 @@ RUN apt-get update \
15 && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ 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 \ 16 && apt-get update \
17 && apt-get install -y google-chrome-unstable --no-install-recommends \ 17 && apt-get install -y google-chrome-unstable --no-install-recommends \
18 && rm -rf /var/lib/apt/lists/* 18 && rm -rf /var/lib/apt/lists/* \
19 && wget --quiet https://raw.githubusercontent.com/vishnubob/wait-for-it/master/wait-for-it.sh -O /usr/sbin/wait-for-it.sh \
20 && chmod +x /usr/sbin/wait-for-it.sh
19 21
20# Install Puppeteer under /node_modules so it's available system-wide 22# Install Puppeteer under /node_modules so it's available system-wide
21ADD package.json package-lock.json / 23ADD package.json package-lock.json /
22RUN npm install \ No newline at end of file 24RUN npm install