Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +16 -0
Dockerfile
CHANGED
|
@@ -3,5 +3,21 @@ FROM extralitdev/extralit-hf-space:latest
|
|
| 3 |
# Copy the auth config section
|
| 4 |
COPY .oauth.yaml /home/extralit/
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
# Uncoment this line to remove the persistence storage warning
|
| 7 |
ENV EXTRALIT_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
|
|
|
|
| 3 |
# Copy the auth config section
|
| 4 |
COPY .oauth.yaml /home/extralit/
|
| 5 |
|
| 6 |
+
USER root
|
| 7 |
+
|
| 8 |
+
RUN apt-get update && \
|
| 9 |
+
apt-get install -y \
|
| 10 |
+
bash \
|
| 11 |
+
git git-lfs \
|
| 12 |
+
wget curl procps \
|
| 13 |
+
htop vim nano && \
|
| 14 |
+
rm -rf /var/lib/apt/lists/*
|
| 15 |
+
|
| 16 |
+
WORKDIR /app
|
| 17 |
+
COPY --link /home/extralit /app
|
| 18 |
+
RUN chown extralit:extralit /app
|
| 19 |
+
|
| 20 |
+
USER extralit
|
| 21 |
+
|
| 22 |
# Uncoment this line to remove the persistence storage warning
|
| 23 |
ENV EXTRALIT_SHOW_HUGGINGFACE_SPACE_PERSISTENT_STORAGE_WARNING=false
|