mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-16 11:39:13 +00:00
13 lines
245 B
Plaintext
13 lines
245 B
Plaintext
![]() |
#!/bin/sh
|
||
|
|
||
|
# This script is the entrypoint for our Docker image.
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Set up display; otherwise rendering will cause segfaults
|
||
|
rm -f /tmp/.X12-lock
|
||
|
Xvfb :12 -screen 0 800x600x24 +extension RANDR 2>/dev/null &
|
||
|
export DISPLAY=:12
|
||
|
|
||
|
exec "$@"
|