1
0
mirror of https://github.com/jcwimer/watir-docker synced 2026-03-24 18:14:42 +00:00

Initial Dockerfile and entrypoint

This commit is contained in:
2019-03-21 12:20:04 +00:00
parent 9714d7e6d9
commit 045b4081d2
2 changed files with 38 additions and 0 deletions

8
entrypoint.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
set -e
echo "Starting X virtual framebuffer (Xvfb) in background..."
Xvfb -ac :99 -screen 0 1280x1024x16 > /dev/null 2>&1 &
export DISPLAY=:99
exec "$@"