huathedev commited on
Commit
71a4daf
·
1 Parent(s): 4b8f7cb

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -8,12 +8,13 @@ RUN pip3 install --no-cache-dir -r /app/requirements.txt
8
  RUN pip3 install numpy
9
  RUN pip3 install cython==0.29.21
10
  RUN apt-get update
11
- RUN apt-get install --reinstall build-essential
12
  RUN pip3 install pygco==0.0.16
13
 
14
  # User
15
  RUN useradd -m -u 1000 user
16
  USER user
 
17
  ENV HOME /home/user
18
  ENV PATH $HOME/.local/bin:$PATH
19
 
 
8
  RUN pip3 install numpy
9
  RUN pip3 install cython==0.29.21
10
  RUN apt-get update
11
+ RUN apt-get install --reinstall build-essential -y
12
  RUN pip3 install pygco==0.0.16
13
 
14
  # User
15
  RUN useradd -m -u 1000 user
16
  USER user
17
+
18
  ENV HOME /home/user
19
  ENV PATH $HOME/.local/bin:$PATH
20