Spaces:
Paused
Paused
Update entrypoint.py
Browse files- entrypoint.py +3 -2
entrypoint.py
CHANGED
|
@@ -37,5 +37,6 @@ cmd = [
|
|
| 37 |
"/workspace"
|
| 38 |
]
|
| 39 |
|
| 40 |
-
|
| 41 |
-
|
|
|
|
|
|
| 37 |
"/workspace"
|
| 38 |
]
|
| 39 |
|
| 40 |
+
def start_code():
|
| 41 |
+
subprocess.run(cmd, env=env)
|
| 42 |
+
threading.Thread(target=start_code, daemon=True).start()
|