From 7efa0a4832dec5f513d7f35993ce6c226fabdd48 Mon Sep 17 00:00:00 2001 From: Chris Stephens Date: Thu, 4 Apr 2019 16:40:07 -0700 Subject: [PATCH] making cloud build thing --- Dockerfile | 3 +++ helloworld.sh | 2 ++ 2 files changed, 5 insertions(+) create mode 100644 Dockerfile create mode 100644 helloworld.sh diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b5b3092 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine +COPY helloworld.sh / +CMD ["/helloworld.sh"] diff --git a/helloworld.sh b/helloworld.sh new file mode 100644 index 0000000..79a32fd --- /dev/null +++ b/helloworld.sh @@ -0,0 +1,2 @@ +#!/bin/sh +echo "Hello, world!"