Skip to content

Commit 626db89

Browse files
committed
Update pip with pip3 for py34 docker image
1 parent 56c6b37 commit 626db89

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile.latest-py34

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ RUN unzip ./h2o-3.18.0.8.zip
99
RUN mv h2o-3.18.0.8/h2o.jar /tmp/
1010

1111
ADD ./requirements.txt /
12-
RUN pip install -r /requirements.txt
12+
RUN pip3 install -r /requirements.txt
1313

1414
ADD . /simple_tensorflow_serving/
1515
WORKDIR /simple_tensorflow_serving/
1616
RUN cp ./third_party/openscoring/openscoring-server-executable-1.4-SNAPSHOT.jar /tmp/
1717

18-
# RUN pip install simple-tensorflow-serving
18+
# RUN pip3 install simple-tensorflow-serving
1919
RUN python ./setup.py install
2020

2121
EXPOSE 8500
2222

2323
# CMD ["simple_tensorflow_serving", "--port=8500", "--model_base_path=./models/tensorflow_template_application_model"]
24-
CMD ["simple_tensorflow_serving", "--port=8500", "--model_config_file=./examples/model_config_file.json"]
24+
CMD ["simple_tensorflow_serving", "--port=8500", "--model_config_file=./examples/model_config_file.json"]

0 commit comments

Comments
 (0)