Spaces:
Paused
Paused
Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -21,6 +21,10 @@ RUN echo '#!/bin/bash\n\
|
|
| 21 |
echo "Starting socat proxy 7860 -> 8045..."\n\
|
| 22 |
socat TCP-LISTEN:7860,fork,bind=0.0.0.0 TCP:127.0.0.1:8045 &\n\
|
| 23 |
\n\
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
echo "Starting Antigravity Tools..."\n\
|
| 25 |
# Adjust the path based on the actual image contents, usually ./antigravity-tools\n\
|
| 26 |
if [ -f "./antigravity-tools" ]; then\n\
|
|
|
|
| 21 |
echo "Starting socat proxy 7860 -> 8045..."\n\
|
| 22 |
socat TCP-LISTEN:7860,fork,bind=0.0.0.0 TCP:127.0.0.1:8045 &\n\
|
| 23 |
\n\
|
| 24 |
+
echo "Starting Xvfb (Virtual Display)..."\n\
|
| 25 |
+
Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &\n\
|
| 26 |
+
sleep 2\n\
|
| 27 |
+
\n\
|
| 28 |
echo "Starting Antigravity Tools..."\n\
|
| 29 |
# Adjust the path based on the actual image contents, usually ./antigravity-tools\n\
|
| 30 |
if [ -f "./antigravity-tools" ]; then\n\
|