Gradle layer with two docker examples
diff --git a/bar/Dockerfile b/bar/Dockerfile
new file mode 100644
index 0000000..1b2a267
--- /dev/null
+++ b/bar/Dockerfile
@@ -0,0 +1,6 @@
+FROM golang:latest
+RUN mkdir /app
+ADD . /app
+WORKDIR /app
+RUN go build -o main .
+CMD [ "/app/main" ]
diff --git a/bar/README.md b/bar/README.md
new file mode 100644
index 0000000..609ef2b
--- /dev/null
+++ b/bar/README.md
@@ -0,0 +1 @@
+Placeholder for a sub-component Docker image build
diff --git a/bar/bar.go b/bar/bar.go
new file mode 100644
index 0000000..73fc28a
--- /dev/null
+++ b/bar/bar.go
@@ -0,0 +1,8 @@
+package main
+
+import "fmt"
+
+func main() {
+    fmt.Printf("hello, bar\n")
+}
+