alvanlii commited on
Commit
b8f36f8
·
1 Parent(s): e5a3ef5

Try to fix permissions #2

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -11,12 +11,12 @@ FROM nvcr.io/nvidia/pytorch:20.12-py3
11
  ENV PYTHONDONTWRITEBYTECODE 1
12
  ENV PYTHONUNBUFFERED 1
13
 
 
 
14
  RUN useradd -m -u 1000 user
15
  # Switch to the "user" user
16
  USER user
17
  ENV HOME=/exp/domain-expansion
18
-
19
- RUN apt install -y git
20
 
21
  RUN pip install imageio-ffmpeg==0.4.3 pyspng==0.1.0
22
 
 
11
  ENV PYTHONDONTWRITEBYTECODE 1
12
  ENV PYTHONUNBUFFERED 1
13
 
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
 
21
  RUN pip install imageio-ffmpeg==0.4.3 pyspng==0.1.0
22