diff options
author | Tim Lucas <t@toolmantim.com> | 2019-02-06 11:31:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 11:31:56 +1100 |
commit | 4e7c52141ab2170730089e93fb732aa1baba1b2f (patch) | |
tree | 4203de845f246013e763db95da3f0ea1fd4f1410 /Dockerfile | |
parent | f2ea4b9e74b9a8110490ede83d195565f57c004d (diff) | |
parent | 9f994586f630ebc675710563f30fcf1c5bcfcf48 (diff) | |
download | docker-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-- | Dockerfile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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 |
21 | ADD package.json package-lock.json / | 23 | ADD package.json package-lock.json / |
22 | RUN npm install \ No newline at end of file | 24 | RUN npm install |