yaziciz commited on
Commit
5d1c5b3
·
verified ·
1 Parent(s): a87d726

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -3,8 +3,14 @@ FROM continuumio/anaconda3:main
3
  WORKDIR /code
4
  COPY ./environment.yml /code/environment.yml
5
 
 
 
6
  # Create the environment using the environment.yml file
7
- RUN conda env create -f /code/environment.yml
 
 
 
 
8
 
9
  # Set up a new user named "user" with user ID 1000
10
  RUN useradd -m -u 1000 user
 
3
  WORKDIR /code
4
  COPY ./environment.yml /code/environment.yml
5
 
6
+ RUN
7
+
8
  # Create the environment using the environment.yml file
9
+ RUN conda env create -n ssgqa
10
+
11
+ RUN conda activate ssgqa
12
+ RUN pip install --upgrade pip
13
+ RUN conda env update -n ssgqa -f /code/environment.yml
14
 
15
  # Set up a new user named "user" with user ID 1000
16
  RUN useradd -m -u 1000 user