Skip to content

Commit

Permalink
Merge pull request #442 from cliveseldon/openvino_demo_jan19
Browse files Browse the repository at this point in the history
Update image names for openvino demo
  • Loading branch information
ukclivecox authored Feb 11, 2019
2 parents 361db75 + 0b1009e commit 4d26ff0
Show file tree
Hide file tree
Showing 7 changed files with 113 additions and 97 deletions.

Large diffs are not rendered by default.

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)
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"containers": [
{
"name": "imagenet-itransformer",
"image": "seldonio/imagenet_transformer:0.1",
"image": "seldonio/openvino-demo-transformer:0.1",
"env": [
{
"name": "TRACING",
Expand All @@ -31,7 +31,7 @@
},
{
"name": "imagenet-otransformer",
"image": "seldonio/imagenet_transformer:0.1",
"image": "seldonio/openvino-demo-transformer:0.1",
"env": [
{
"name": "TRACING",
Expand All @@ -45,7 +45,7 @@
},
{
"name": "imagenet-combiner",
"image": "seldonio/imagenet_combiner:0.1",
"image": "seldonio/openvino-demo-combiner:0.1",
"env": [
{
"name": "TRACING",
Expand All @@ -59,7 +59,7 @@
},
{
"name": "prediction1",
"image": "seldonio/seldon-openvino-prediction:0.1",
"image": "seldonio/openvino-demo-prediction:0.1",
"resources": {
"requests": {
"cpu": "1"
Expand Down Expand Up @@ -113,7 +113,7 @@
},
{
"name": "prediction2",
"image": "seldonio/seldon-openvino-prediction:0.1",
"image": "seldonio/openvino-demo-prediction:0.1",
"resources": {
"requests": {
"cpu": "1"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"containers": [
{
"name": "imagenet-itransformer",
"image": "seldonio/imagenet_transformer:0.1",
"image": "seldonio/openvino-demo-transformer:0.1",
"env": [
{
"name": "TRACING",
Expand All @@ -31,7 +31,7 @@
},
{
"name": "imagenet-otransformer",
"image": "seldonio/imagenet_transformer:0.1",
"image": "seldonio/openvino-demo-transformer:0.1",
"env": [
{
"name": "TRACING",
Expand All @@ -45,7 +45,7 @@
},
{
"name": "imagenet-combiner",
"image": "seldonio/imagenet_combiner:0.1",
"image": "seldonio/openvino-demo-combiner:0.1",
"env": [
{
"name": "TRACING",
Expand Down
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 4d26ff0

Please sign in to comment.