Skip to content

Commit

Permalink
Update all servers to use 0.12-SNAPSHOT python base image
Browse files Browse the repository at this point in the history
  • Loading branch information
ukclivecox authored and axsaucedo committed Aug 25, 2019
1 parent 559f897 commit fcd8b34
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions servers/mlflowserver/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
VERSION=0.1
VERSION=0.2
IMAGE_BASE=seldonio/mlflowserver

build_rest:
s2i build -E environment_rest ./mlflowserver seldonio/seldon-core-s2i-python37:0.11-SNAPSHOT ${IMAGE_BASE}_rest:${VERSION}
s2i build -E environment_rest ./mlflowserver seldonio/seldon-core-s2i-python37:0.12-SNAPSHOT ${IMAGE_BASE}_rest:${VERSION}

push_rest:
docker push ${IMAGE_BASE}_rest:${VERSION}

build_grpc:
s2i build -E environment_grpc ./mlflowserver seldonio/seldon-core-s2i-python37:0.11-SNAPSHOT ${IMAGE_BASE}_grpc:${VERSION}
s2i build -E environment_grpc ./mlflowserver seldonio/seldon-core-s2i-python37:0.12-SNAPSHOT ${IMAGE_BASE}_grpc:${VERSION}

push_grpc:
docker push ${IMAGE_BASE}_grpc:${VERSION}
Expand Down
2 changes: 1 addition & 1 deletion servers/mlflowserver/mlflowserver/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
mlflow==1.1.0
sklearn==0.21.3
scikit-learn==0.21.3
pandas==0.25.0
numpy==1.16.4
6 changes: 3 additions & 3 deletions servers/sklearnserver/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
VERSION=0.1
VERSION=0.2
IMAGE_BASE=seldonio/sklearnserver

build_rest:
s2i build -E environment_rest ./sklearnserver seldonio/seldon-core-s2i-python37:0.11-SNAPSHOT ${IMAGE_BASE}_rest:${VERSION}
s2i build -E environment_rest ./sklearnserver seldonio/seldon-core-s2i-python37:0.12-SNAPSHOT ${IMAGE_BASE}_rest:${VERSION}

push_rest:
docker push ${IMAGE_BASE}_rest:${VERSION}

build_grpc:
s2i build -E environment_grpc ./sklearnserver seldonio/seldon-core-s2i-python37:0.11-SNAPSHOT ${IMAGE_BASE}_grpc:${VERSION}
s2i build -E environment_grpc ./sklearnserver seldonio/seldon-core-s2i-python37:0.12-SNAPSHOT ${IMAGE_BASE}_grpc:${VERSION}

push_grpc:
docker push ${IMAGE_BASE}_grpc:${VERSION}
Expand Down
6 changes: 3 additions & 3 deletions servers/xgboostserver/Makefile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
VERSION=0.1
VERSION=0.2
IMAGE_BASE=seldonio/xgboostserver

build_rest:
s2i build -E environment_rest ./xgboostserver seldonio/seldon-core-s2i-python37:0.11-SNAPSHOT ${IMAGE_BASE}_rest:${VERSION}
s2i build -E environment_rest ./xgboostserver seldonio/seldon-core-s2i-python37:0.12-SNAPSHOT ${IMAGE_BASE}_rest:${VERSION}

push_rest:
docker push ${IMAGE_BASE}_rest:${VERSION}

build_grpc:
s2i build -E environment_grpc ./xgboostserver seldonio/seldon-core-s2i-python37:0.11-SNAPSHOT ${IMAGE_BASE}_grpc:${VERSION}
s2i build -E environment_grpc ./xgboostserver seldonio/seldon-core-s2i-python37:0.12-SNAPSHOT ${IMAGE_BASE}_grpc:${VERSION}

push_grpc:
docker push ${IMAGE_BASE}_grpc:${VERSION}
Expand Down

0 comments on commit fcd8b34

Please sign in to comment.