Skip to content

Commit

Permalink
edit build.sh for !#/bin/bash
Browse files Browse the repository at this point in the history
  • Loading branch information
Rebecca McFadden committed Aug 2, 2019
1 parent 74d7bcd commit 9ab9e05
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 204 deletions.
201 changes: 0 additions & 201 deletions pipelines/azurepipeline/LICENSE

This file was deleted.

3 changes: 3 additions & 0 deletions pipelines/azurepipeline/code/deploy/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
IMAGE=<your_registry>.azurecr.io/kubeflow/deploy
docker build -t $IMAGE . && docker run -it $IMAGE
3 changes: 2 additions & 1 deletion pipelines/azurepipeline/code/preprocess/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
IMAGE=kubeflowregistry.azurecr.io/kubeflow/preprocess
#!/bin/bash
IMAGE=<your_registry>.azurecr.io/kubeflow/preprocess
docker build -t $IMAGE . && docker run -it $IMAGE
3 changes: 3 additions & 0 deletions pipelines/azurepipeline/code/profile/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
IMAGE=<your_registry>.azurecr.io/kubeflow/profile
docker build -t $IMAGE . && docker run -it $IMAGE
3 changes: 2 additions & 1 deletion pipelines/azurepipeline/code/register/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
IMAGE=tacoregistry.azurecr.io/kubeflow/register
#!/bin/bash
IMAGE=<your_registry>.azurecr.io/kubeflow/register
docker build -t $IMAGE . && docker run -it $IMAGE
3 changes: 2 additions & 1 deletion pipelines/azurepipeline/code/training/build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
IMAGE=tacoregistry.azurecr.io/kubeflow/training
#!/bin/bash
IMAGE=<your_registry>.azurecr.io/kubeflow/training
docker build -t $IMAGE . && docker run -it $IMAGE

0 comments on commit 9ab9e05

Please sign in to comment.