aboutsummaryrefslogtreecommitdiffhomepage
path: root/README
diff options
context:
space:
mode:
Diffstat (limited to 'README')
-rw-r--r--README18
1 files changed, 0 insertions, 18 deletions
diff --git a/README b/README
deleted file mode 100644
index b58eff5..0000000
--- a/README
+++ /dev/null
@@ -1,18 +0,0 @@
1# Docker Puppeteer
2
3A Puppeteer Docker image based on the code here (Apache 2.0 license):
4https://github.com/GoogleChrome/puppeteer/blob/master/docs/troubleshooting.md#running-puppeteer-in-docker
5
6An example for how to use:
7
8```Dockerfile
9FROM buildkite/puppeteer
10
11RUN npm install mocha
12ENV PATH="${PATH}:/node_modules/.bin"
13
14# The `tests` dir is expected to be mounted into here
15WORK_DIR /home/pptr
16
17CMD ["mocha", "--recursive", "tests"]
18``` \ No newline at end of file