Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -4,9 +4,10 @@ FROM argilla/argilla-quickstart:v1.28.0
|
|
4 |
USER root
|
5 |
RUN apt-get update && \
|
6 |
apt-get install -y git git-lfs wget curl procps && \
|
7 |
-
rm -rf /var/lib/apt/lists/*
|
|
|
|
|
8 |
USER argilla
|
9 |
-
RUN ln -s /home/argilla /app
|
10 |
|
11 |
# Copy the auth config section
|
12 |
COPY .oauth.yaml /home/argilla/
|
|
|
4 |
USER root
|
5 |
RUN apt-get update && \
|
6 |
apt-get install -y git git-lfs wget curl procps && \
|
7 |
+
rm -rf /var/lib/apt/lists/* && \
|
8 |
+
ln -s /home/argilla /app && \
|
9 |
+
chown -h argilla:argilla /app
|
10 |
USER argilla
|
|
|
11 |
|
12 |
# Copy the auth config section
|
13 |
COPY .oauth.yaml /home/argilla/
|