diff options
author | Tim Lucas <t@toolmantim.com> | 2018-03-15 23:57:03 +1100 |
---|---|---|
committer | Tim Lucas <t@toolmantim.com> | 2018-03-15 23:57:03 +1100 |
commit | 162d70f3784124050ac7c705cecb4e395733642e (patch) | |
tree | b6028002f4bb8ea3b1c1923324446380b0e765b3 /README | |
parent | 7e5d7caa2a4ce3cdb97cb3b859e252c75726d5ae (diff) | |
download | docker-puppeteer-162d70f3784124050ac7c705cecb4e395733642e.tar.gz docker-puppeteer-162d70f3784124050ac7c705cecb4e395733642e.tar.zst docker-puppeteer-162d70f3784124050ac7c705cecb4e395733642e.zip |
Initial commit
Diffstat (limited to 'README')
-rw-r--r-- | README | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -0,0 +1,18 @@ | |||
1 | # Docker Puppeteer | ||
2 | |||
3 | A Puppeteer Docker image based on the code here (Apache 2.0 license): | ||
4 | https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker | ||
5 | |||
6 | An example for how to use: | ||
7 | |||
8 | ```Dockerfile | ||
9 | FROM buildkite/puppeteer | ||
10 | |||
11 | RUN npm install mocha | ||
12 | ENV PATH="${PATH}:/node_modules/.bin" | ||
13 | |||
14 | # The `tests` dir is expected to be mounted into here | ||
15 | WORK_DIR /home/pptr | ||
16 | |||
17 | CMD ["mocha", "--recursive", "tests"] | ||
18 | ``` \ No newline at end of file | ||