Skip to content

Commit

Permalink
merge from master
Browse files Browse the repository at this point in the history
  • Loading branch information
dtrawins committed Feb 12, 2019
2 parents fb4da66 + 4d26ff0 commit 853ef20
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
IMAGE_VERSION=0.1
IMAGE_NAME=docker.io/seldonio/openvino-demo-combiner

build:
s2i build -E environment_grpc . seldon_openvino_base:latest seldonio/imagenet_combiner:0.1
s2i build -E environment_grpc . seldonio/seldon-core-s2i-openvino:0.1 $(IMAGE_NAME):$(IMAGE_VERSION)

push_to_dockerhub:
docker push $(IMAGE_NAME):$(IMAGE_VERSION)

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
IMAGE_VERSION=0.1
IMAGE_NAME=docker.io/seldonio/openvino-demo-prediction

build:
s2i build -E environment_grpc . seldonio/seldon-core-s2i-openvino:0.1 $(IMAGE_NAME):$(IMAGE_VERSION)

push_to_dockerhub:
docker push $(IMAGE_NAME):$(IMAGE_VERSION)
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
IMAGE_VERSION=0.1
IMAGE_NAME=docker.io/seldonio/openvino-demo-transformer

build:
s2i build -E environment_grpc . seldon_openvino_base:latest seldonio/imagenet_transformer:0.1
s2i build -E environment_grpc . seldonio/seldon-core-s2i-openvino:0.1 $(IMAGE_NAME):$(IMAGE_VERSION)

push_to_dockerhub:
docker push $(IMAGE_NAME):$(IMAGE_VERSION)
1 change: 0 additions & 1 deletion wrappers/s2i/python_openvino/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ s2i:
.PHONY: build
build: s2i
docker build -f Dockerfile_openvino_base -t $(IMAGE_NAME):$(IMAGE_VERSION) .
#docker build -f Dockerfile_openvino_base --build-arg http_proxy=$http_proxy --build-arg https_proxy=$https_proxy -t $(IMAGE_NAME):$(IMAGE_VERSION) .

push_to_dockerhub:
docker push $(IMAGE_NAME):$(IMAGE_VERSION)

0 comments on commit 853ef20

Please sign in to comment.