jfcalvo commited on
Commit
856be9b
1 Parent(s): 4cc7e05

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -1
Dockerfile CHANGED
@@ -1,9 +1,16 @@
1
  FROM argilla/argilla-quickstart:v1.28.0
2
 
 
 
 
 
 
 
3
  # Copy the auth config section
4
  COPY .oauth.yaml /home/argilla/
5
 
6
  ENV OAUTH_ID=""
 
7
  # Uncomment the next section to keep backward compatibility with previous versions
8
  ## Following variables are used for backward compatibility with the previous security setup for the quickstart image
9
  #ENV ADMIN_USERNAME="team"
@@ -22,4 +29,4 @@ ENV OAUTH_ID=""
22
  # ENV REINDEX_DATASETS=true
23
 
24
  # (since: v1.28.0) Uncomment the next line to force not showing warning message about Hugging Face Space persistent storage not enabled.
25
- # ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
 
1
  FROM argilla/argilla-quickstart:v1.28.0
2
 
3
+ # HF dev mode requirements
4
+ RUN apt-get update && \
5
+ apt-get install -y git git-lfs wget curl procps && \
6
+ rm -rf /var/lib/apt/lists/* && \
7
+ ln -s /home/argilla /app
8
+
9
  # Copy the auth config section
10
  COPY .oauth.yaml /home/argilla/
11
 
12
  ENV OAUTH_ID=""
13
+
14
  # Uncomment the next section to keep backward compatibility with previous versions
15
  ## Following variables are used for backward compatibility with the previous security setup for the quickstart image
16
  #ENV ADMIN_USERNAME="team"
 
29
  # ENV REINDEX_DATASETS=true
30
 
31
  # (since: v1.28.0) Uncomment the next line to force not showing warning message about Hugging Face Space persistent storage not enabled.
32
+ # ENV ARGILLA_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false