Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +5 -10
Dockerfile
CHANGED
@@ -1,10 +1,5 @@
|
|
1 |
-
FROM argilla/argilla
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
# Comment this line to disable annotation progress sharing feature
|
7 |
-
ENV ARGILLA_ENABLE_SHARE_YOUR_PROGRESS=1
|
8 |
-
|
9 |
-
# Uncoment this line to remove the persistence storage warning
|
10 |
-
#ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
|
|
|
1 |
+
FROM argilla/argilla:latest
|
2 |
+
EXPOSE 6900
|
3 |
+
ENV ARGILLA_LOCAL_AUTH_ENABLED=true
|
4 |
+
ENV ARGILLA_LOCAL_AUTH_PASSWORD=1234
|
5 |
+
CMD ["argilla", "run", "--host", "0.0.0.0", "--port", "6900"]
|
|
|
|
|
|
|
|
|
|