Skip to content

Commit c23b8bc

Browse files
committed
Install wget for all Dockerfiles
1 parent 626db89 commit c23b8bc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:2.7
22

33
RUN apt-get update -y
4-
RUN apt-get install -y unzip
4+
RUN apt-get install -y unzip wget
55
RUN apt-get install -y default-jdk
66

77
RUN wget http://h2o-release.s3.amazonaws.com/h2o/rel-wolpert/8/h2o-3.18.0.8.zip
@@ -21,4 +21,4 @@ RUN python ./setup.py install
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"]

Dockerfile.latest-gpu

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM tensorflow/tensorflow:latest-gpu
22

33
RUN apt-get update -y
4-
RUN apt-get install -y unzip
4+
RUN apt-get install -y unzip wget
55
RUN apt-get install -y default-jdk
66

77
RUN wget http://h2o-release.s3.amazonaws.com/h2o/rel-wolpert/8/h2o-3.18.0.8.zip
@@ -21,4 +21,4 @@ RUN python ./setup.py install
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"]

Dockerfile.latest-hdfs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM tobegit3hub/tensorflow_hdfs
22

33
RUN apt-get update -y
4-
RUN apt-get install -y unzip
4+
RUN apt-get install -y unzip wget
55
RUN apt-get install -y default-jdk
66

77
RUN wget http://h2o-release.s3.amazonaws.com/h2o/rel-wolpert/8/h2o-3.18.0.8.zip

Dockerfile.latest-py34

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.4
22

33
RUN apt-get update -y
4-
RUN apt-get install -y unzip
4+
RUN apt-get install -y unzip wget
55
RUN apt-get install -y default-jdk
66

77
RUN wget http://h2o-release.s3.amazonaws.com/h2o/rel-wolpert/8/h2o-3.18.0.8.zip

0 commit comments

Comments
 (0)