Spaces:
Paused
Paused
Create entrypoint.sh
Browse files- entrypoint.sh +7 -0
entrypoint.sh
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
|
| 3 |
+
# Start the Chrome Remote Desktop host command in the background
|
| 4 |
+
DISPLAY= /opt/google/chrome-remote-desktop/start-host --code="4/0AQSTgQG8Y56Z5Qfw3D9VpFE7RVY07sAFAdAlkhPGh6Mbhyy1DDUCQTo2u9Jdl_egmBzAGg" --redirect-url="https://remotedesktop.google.com/_/oauthredirect" --name=$(hostname) &
|
| 5 |
+
|
| 6 |
+
# Run the Python setup script
|
| 7 |
+
python3 /setup.py
|