tosanoob commited on
Commit
9e78164
1 Parent(s): 52a8549

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -6,6 +6,9 @@ WORKDIR /code
6
  # copy project
7
  COPY . /code/
8
 
 
 
 
9
  # install dependencies
10
  RUN pip install -r requirement.txt
11
 
 
6
  # copy project
7
  COPY . /code/
8
 
9
+ RUN python -m venv ./arxiv_venv
10
+ RUN source ./arxiv_venv/bin/activate
11
+
12
  # install dependencies
13
  RUN pip install -r requirement.txt
14