https://github.com/p2pu/puppeteer-docker
https://github.com/p2pu/puppeteer-docker
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/p2pu/puppeteer-docker
- Owner: p2pu
- Created: 2018-10-16T08:09:51.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-02-21T13:27:13.000Z (over 3 years ago)
- Last Synced: 2025-07-05T02:22:51.331Z (12 months ago)
- Language: Dockerfile
- Size: 4.88 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Base docker image to use for front-end testing
## Usage
```bash
docker run --rm -it --volume `pwd`:/opt/app/ \
--link learningcircles-db:postgres \
--link learningcircles \
-e DATABASE_URL=postgres://postgres:password@postgres/lc \
p2pu/puppeteer-docker \
sh -c "cd /opt/app/ && npm i --only=dev && npm test"
```