Skip to content

Commit 112c2c3

Browse files
committed
Remove incorrect entrypoint
1 parent ad12d00 commit 112c2c3

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -159,5 +159,4 @@ ENV \
159159
XVFB_WHD="1920x1080x24"
160160

161161
# Set the entrypoint script
162-
# ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
163-
ENTRYPOINT xvfb-run -e /dev/stderr xdpyinfo | cat
162+
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

Diff for: entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if [ $# -eq 0 ]; then
66
else
77
# Start Xvfb
88
echo "Starting Xvfb"
9-
Xvfb :99 -ac -screen 0 "$XVFB_WHD" -nolisten tcp &
9+
Xvfb :99 -ac -screen 0 "$XVFB_WHD" -nolisten tcp +extension GLX +render -noreset &
1010
Xvfb_pid="$!"
1111
echo "Waiting for Xvfb (PID: $Xvfb_pid) to be ready..."
1212
while ! xdpyinfo -display "${DISPLAY}" > /dev/null 2>&1; do

0 commit comments

Comments
 (0)