An open API service indexing awesome lists of open source software.

https://github.com/albertoimpl/docker-firefox-latest-xvfb

Docker image with for the latest Firefox in Debian with XVFB and Java 8.
https://github.com/albertoimpl/docker-firefox-latest-xvfb

Last synced: 3 months ago
JSON representation

Docker image with for the latest Firefox in Debian with XVFB and Java 8.

Awesome Lists containing this project

README

          

# docker-firefox-latest-xvfb

This dockerfile contains the steps to create an image with the latest firefox and a virtual display for CI.
DockerHub: https://hub.docker.com/r/albertoimpl/firefox-latest-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
~~~~