Spaces:
Runtime error
Runtime error
Try to fix perms #5
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -14,10 +14,11 @@ ENV PYTHONUNBUFFERED 1
|
|
| 14 |
RUN apt install -y git
|
| 15 |
|
| 16 |
RUN useradd -m -u 1000 user
|
|
|
|
| 17 |
# Switch to the "user" user
|
| 18 |
USER user
|
| 19 |
ENV HOME=/exp/domain-expansion
|
| 20 |
-
RUN
|
| 21 |
|
| 22 |
RUN pip install imageio-ffmpeg==0.4.3 pyspng==0.1.0
|
| 23 |
|
|
|
|
| 14 |
RUN apt install -y git
|
| 15 |
|
| 16 |
RUN useradd -m -u 1000 user
|
| 17 |
+
RUN mkdir /exp && mkdir /exp/domain-expansion
|
| 18 |
# Switch to the "user" user
|
| 19 |
USER user
|
| 20 |
ENV HOME=/exp/domain-expansion
|
| 21 |
+
RUN chown -R user $HOME
|
| 22 |
|
| 23 |
RUN pip install imageio-ffmpeg==0.4.3 pyspng==0.1.0
|
| 24 |
|