Update Dockerfile
Browse files- Dockerfile +14 -5
Dockerfile
CHANGED
@@ -1,12 +1,20 @@
|
|
1 |
-
FROM
|
2 |
|
3 |
# Copy the auth config section
|
4 |
COPY .oauth.yaml /home/argilla/
|
5 |
|
6 |
-
#
|
7 |
-
ENV
|
8 |
-
ENV OAUTH_ID=""
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
# Uncomment the next section to keep backward compatibility with previous versions
|
11 |
## Following variables are used for backward compatibility with the previous security setup for the quickstart image
|
12 |
#ENV ADMIN_USERNAME="team"
|
@@ -24,4 +32,5 @@ ENV OAUTH_ID=""
|
|
24 |
# Uncomment the next line if a new version of Argilla requires a dataset search reindex.
|
25 |
# ENV REINDEX_DATASETS=true
|
26 |
|
27 |
-
|
|
|
|
1 |
+
FROM argilla/argilla-hf-spaces:v2.0.1
|
2 |
|
3 |
# Copy the auth config section
|
4 |
COPY .oauth.yaml /home/argilla/
|
5 |
|
6 |
+
# Uncoment this line to remove the persistence storage warning
|
7 |
+
#ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
|
|
|
8 |
|
9 |
+
|
10 |
+
# ----------------------------------------------------------------------
|
11 |
+
# old
|
12 |
+
#FROM argilla/argilla-quickstart:v1.29.0
|
13 |
+
|
14 |
+
# Copy the auth config section
|
15 |
+
#COPY .oauth.yaml /home/argilla/
|
16 |
+
|
17 |
+
#ENV OAUTH_ID=""
|
18 |
# Uncomment the next section to keep backward compatibility with previous versions
|
19 |
## Following variables are used for backward compatibility with the previous security setup for the quickstart image
|
20 |
#ENV ADMIN_USERNAME="team"
|
|
|
32 |
# Uncomment the next line if a new version of Argilla requires a dataset search reindex.
|
33 |
# ENV REINDEX_DATASETS=true
|
34 |
|
35 |
+
# (since: v1.28.0) Uncomment the next line to force not showing warning message about Hugging Face Space persistent storage not enabled.
|
36 |
+
# ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
|