File tree Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Expand file tree Collapse file tree 5 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ WORKDIR /ie-serving-py
24
24
COPY requirements.txt /ie-serving-py/
25
25
ENV WRAPT_INSTALL_EXTENSIONS=false
26
26
RUN virtualenv -p python3 .venv && \
27
- . .venv/bin/activate && pip3 --no-cache-dir install -r requirements.txt
27
+ . .venv/bin/activate && pip3 install --upgrade pip==20.2.1 && \
28
+ pip3 --no-cache-dir install -r requirements.txt --use-feature=2020-resolver
28
29
29
30
COPY start_server.sh setup.py version /ie-serving-py/
30
31
COPY ie_serving /ie-serving-py/ie_serving
Original file line number Diff line number Diff line change @@ -55,7 +55,9 @@ WORKDIR /ie-serving-py
55
55
56
56
COPY start_server.sh setup.py version requirements.txt /ie-serving-py/
57
57
ENV WRAPT_INSTALL_EXTENSIONS=false
58
- RUN virtualenv -p python3 .venv && . .venv/bin/activate && pip3 install -r requirements.txt
58
+ RUN virtualenv -p python3 .venv && . .venv/bin/activate && \
59
+ pip3 install --upgrade pip==20.2.1 && \
60
+ pip3 install -r requirements.txt --use-feature=2020-resolver
59
61
60
62
COPY ie_serving /ie-serving-py/ie_serving
61
63
Original file line number Diff line number Diff line change @@ -52,10 +52,10 @@ venv: $(ACTIVATE)
52
52
$(ACTIVATE ) : requirements.txt requirements-dev.txt
53
53
@echo " Updating virtualenv dependencies in: $( VIRTUALENV_DIR) ..."
54
54
@test -d $(VIRTUALENV_DIR ) || $(VIRTUALENV_EXE ) $(VIRTUALENV_DIR )
55
- @. $(ACTIVATE ) ; pip$(PY_VERSION ) install --upgrade pip
55
+ @. $(ACTIVATE ) ; pip$(PY_VERSION ) install --upgrade pip==20.2.1
56
56
@. $(ACTIVATE ) ; pip$(PY_VERSION ) install -vUqq setuptools
57
- @. $(ACTIVATE ) ; pip$(PY_VERSION ) install -qq -r requirements.txt
58
- @. $(ACTIVATE ) ; pip$(PY_VERSION ) install -qq -r requirements-dev.txt
57
+ @. $(ACTIVATE ) ; pip$(PY_VERSION ) install -qq -r requirements.txt --use-feature=2020-resolver
58
+ @. $(ACTIVATE ) ; pip$(PY_VERSION ) install -qq -r requirements-dev.txt --use-feature=2020-resolver
59
59
@touch $(ACTIVATE )
60
60
61
61
install : $(ACTIVATE )
Original file line number Diff line number Diff line change @@ -2,8 +2,7 @@ flake8==3.5.0
2
2
pytest == 3.7.2
3
3
pytest-cov == 2.5.1
4
4
pytest-mock == 1.10.0
5
- requests == 2.19.1
6
- grpcio-testing == 1.22.0
5
+ requests == 2.21.0
6
+ grpcio-testing == 1.24.3
7
7
docker == 3.7.0
8
- protobuf == 3.6.1
9
8
opencv-python == 4.1.2.30
Original file line number Diff line number Diff line change 1
1
grpcio == 1.24.3
2
- protobuf == 3.10 .0
2
+ protobuf == 3.12 .0
3
3
tensorflow-serving-api == 2.0.*
4
4
google-cloud-storage == 1.20.0
5
5
boto3 == 1.10.2
You can’t perform that action at this time.
0 commit comments