From 5c4950876dccc288bcbc4158b137ba145659ae63 Mon Sep 17 00:00:00 2001 From: Vikram Fugro Date: Mon, 2 Sep 2019 11:11:29 +0200 Subject: [PATCH 1/3] Update helloworld.sh --- helloworld.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/helloworld.sh b/helloworld.sh index 79a32fd6..0b5096e7 100644 --- a/helloworld.sh +++ b/helloworld.sh @@ -1,2 +1,3 @@ #!/bin/sh echo "Hello, world!" +echo "The time is $(date)." From c308846ae6cda1b95aad1f5e75f9c7b0bfb96cd8 Mon Sep 17 00:00:00 2001 From: Vikram Fugro Date: Mon, 2 Sep 2019 11:23:15 +0200 Subject: [PATCH 2/3] rm dockerfile --- Dockerfile | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index b5b30924..00000000 --- a/Dockerfile +++ /dev/null @@ -1,3 +0,0 @@ -FROM alpine -COPY helloworld.sh / -CMD ["/helloworld.sh"] From 6551dceed77f47f90afb1150469d15caef0ae641 Mon Sep 17 00:00:00 2001 From: Vikram Fugro Date: Mon, 2 Sep 2019 11:27:09 +0200 Subject: [PATCH 3/3] cloudbuild --- cloudbuild.yaml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cloudbuild.yaml diff --git a/cloudbuild.yaml b/cloudbuild.yaml new file mode 100644 index 00000000..e0ff1a7f --- /dev/null +++ b/cloudbuild.yaml @@ -0,0 +1,7 @@ +# In this directory, run the following command to build this builder. +# $ gcloud builds submit . --config=cloudbuild.yaml + +steps: +# Build the alpine and debian versions. +- name: 'gcr.io/cloud-builders/git' + args: ['log']