Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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 |
|