Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 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 |
-
|
|
|
|
| 8 |
|
| 9 |
# Copy the auth config section
|
| 10 |
COPY .oauth.yaml /home/argilla/
|
|
|
|
| 1 |
FROM argilla/argilla-quickstart:v1.28.0
|
| 2 |
|
| 3 |
# HF dev mode requirements
|
| 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/
|