https://github.com/albertoimpl/docker-firefox-xvfb
This dockerfile contains the steps to create an image with firefox 43 and a virtual display for CI
https://github.com/albertoimpl/docker-firefox-xvfb
Last synced: 7 months ago
JSON representation
This dockerfile contains the steps to create an image with firefox 43 and a virtual display for CI
- Host: GitHub
- URL: https://github.com/albertoimpl/docker-firefox-xvfb
- Owner: Albertoimpl
- License: apache-2.0
- Created: 2017-01-06T14:39:14.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-24T16:31:43.000Z (over 8 years ago)
- Last Synced: 2025-03-17T11:50:53.187Z (11 months ago)
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-firefox-43-xvfb
This dockerfile contains the steps to create an image with firefox 43 and a virtual display for CI, ideal for protractor tests.
DockerHub: https://hub.docker.com/r/albertoimpl/firefox-43-xvfb
In your CI script do not forget to attach the screen with the following commands:
~~~~
Xvfb -ac :0 -screen 0 1280x1024x16 &
trap 'killall -9 Xvfb' EXIT
~~~~