Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 327 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 327 Bytes

Base docker image to use for front-end testing

Usage

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"