danpoar commited on
Commit
f27e74b
·
verified ·
1 Parent(s): bcb579d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -10
Dockerfile CHANGED
@@ -1,10 +1,5 @@
1
- FROM argilla/argilla-hf-spaces:v2.6.0
2
-
3
- # Copy the auth config section
4
- COPY .oauth.yaml /home/argilla/
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"]