Yaron Koresh commited on
Commit
00c5d92
·
verified ·
1 Parent(s): 32bd149

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -15,9 +15,9 @@ ENV HOME=/home/user \
15
 
16
  WORKDIR $HOME/app
17
  COPY . $HOME/app
18
- run sudo usermod -aG sudo user
19
- run sudo chown -R user .
20
- run sudo chmod -R a+xrw .
21
 
22
  run mkdir -p ~/miniconda3
23
  run wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
@@ -29,4 +29,4 @@ run conda env create -f ./env.yml
29
 
30
  EXPOSE 8080
31
 
32
- ENTRYPOINT ["sh", "./start.sh"]
 
15
 
16
  WORKDIR $HOME/app
17
  COPY . $HOME/app
18
+ run usermod -aG sudo user
19
+ run chown -R user .
20
+ run chmod -R a+xrw .
21
 
22
  run mkdir -p ~/miniconda3
23
  run wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O ~/miniconda3/miniconda.sh
 
29
 
30
  EXPOSE 8080
31
 
32
+ ENTRYPOINT ["bash", "./start.sh"]