File size: 1,243 Bytes
a3fd274
d47a112
856be9b
21efeb3
856be9b
 
026a7ce
 
 
21efeb3
856be9b
ae2c91f
 
63c782e
ec98f58
856be9b
a840e68
 
 
 
 
 
 
 
 
 
 
 
ec98f58
a840e68
b786858
598f92f
 
5e41c48
856be9b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM argilla/argilla-quickstart:v1.29.0

# HF dev mode requirements
USER root
RUN apt-get update && \
    apt-get install -y git git-lfs wget curl procps && \
    rm -rf /var/lib/apt/lists/* && \
    ln -s /home/argilla /app && \
    chown -h argilla:argilla /app
USER argilla

# Copy the auth config section
COPY .oauth.yaml /home/argilla/

ENV OAUTH_ID=""

# Uncomment the next section to keep backward compatibility with previous versions
## Following variables are used for backward compatibility with the previous security setup for the quickstart image
#ENV ADMIN_USERNAME="team"
#ENV ADMIN_API_KEY="team.apikey"
## The password has a minimum length of 8. Passwords with lower lengths will fail.
#ENV ADMIN_PASSWORD=12345678
#
#ENV ANNOTATOR_USERNAME="argilla"
## The password has a minimum length of 8. Passwords with lower lengths will fail.
#ENV ANNOTATOR_PASSWORD=12345678
#
#ENV ARGILLA_WORKSPACE="team"
#

# Uncomment the next line if a new version of Argilla requires a dataset search reindex.
# ENV REINDEX_DATASETS=true

# (since: v1.28.0) Uncomment the next line to force not showing warning message about Hugging Face Space persistent storage not enabled.
# ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false