rpuppy: add bazel rules to build alpine based container image and to push it to local dev cluster
diff --git a/WORKSPACE b/WORKSPACE
index b44c47f..293bd79 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -50,6 +50,17 @@
 
 _go_image_repos()
 
+## Containier Base Images
+
+load("@io_bazel_rules_docker//container:container.bzl", "container_pull")
+
+container_pull(
+    name = "alpine_base",
+    registry = "docker.io",
+    repository = "alpine",
+    digest = "sha256:4e01ddea8def856ba9fee17668fa0b2e45a8bc78127b7ab6cf921f6d6fd86ac9",
+)
+
 ## External Dependencies
 
 go_repository(