Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +6 -1
Dockerfile
CHANGED
@@ -1,4 +1,9 @@
|
|
1 |
# Use the official Label Studio image as the base
|
2 |
FROM heartexlabs/label-studio:latest
|
3 |
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
# Use the official Label Studio image as the base
|
2 |
FROM heartexlabs/label-studio:latest
|
3 |
|
4 |
+
# Override the default command to provide a full, explicit configuration
|
5 |
+
# that solves all previous issues.
|
6 |
+
CMD ["label-studio", "start", "my_project", \
|
7 |
+
"--no-browser", \
|
8 |
+
"--host", "0.0.0.0", \
|
9 |
+
"--data-dir", "/data/project-data"]
|