We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad12d00 commit 112c2c3Copy full SHA for 112c2c3
Dockerfile
@@ -159,5 +159,4 @@ ENV \
159
XVFB_WHD="1920x1080x24"
160
161
# Set the entrypoint script
162
-# ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
163
-ENTRYPOINT xvfb-run -e /dev/stderr xdpyinfo | cat
+ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
entrypoint.sh
@@ -6,7 +6,7 @@ if [ $# -eq 0 ]; then
6
else
7
# Start Xvfb
8
echo "Starting Xvfb"
9
- Xvfb :99 -ac -screen 0 "$XVFB_WHD" -nolisten tcp &
+ Xvfb :99 -ac -screen 0 "$XVFB_WHD" -nolisten tcp +extension GLX +render -noreset &
10
Xvfb_pid="$!"
11
echo "Waiting for Xvfb (PID: $Xvfb_pid) to be ready..."
12
while ! xdpyinfo -display "${DISPLAY}" > /dev/null 2>&1; do
0 commit comments