cebulacamp/landing: build and push backend

Change-Id: I1336fb2fe52de7c42e5de0c4f1e05f42c32a9777
diff --git a/hswaw/cebulacamp/landing/BUILD.bazel b/hswaw/cebulacamp/landing/BUILD.bazel
new file mode 100644
index 0000000..e2f09e0
--- /dev/null
+++ b/hswaw/cebulacamp/landing/BUILD.bazel
@@ -0,0 +1,34 @@
+load("@io_bazel_rules_docker//container:container.bzl", "container_image", "container_push")
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+load("@io_bazel_rules_go//extras:embed_data.bzl", "go_embed_data")
+
+go_embed_data(
+    name = "static",
+    srcs = ["index.html", "style/main.css", "cebula2020.jpeg", "hotel-orle.jpg"],
+    package = "static",
+)
+
+# keep
+go_library(
+    name = "static_go",
+    srcs = [":static"],
+    importpath = "code.hackerspace.pl/hscloud/hswaw/cebulacamp/landing/static",
+    visibility = ["//visibility:public"],
+)
+
+container_image(
+    name="latest",
+    base="@prodimage-bionic//image",
+    files = ["//hswaw/cebulacamp/landing/backend:backend"],
+    directory = "/hscloud/hswaw/cebulacamp/landing",
+    entrypoint = ["/hscloud/hswaw/cebulacamp/landing/backend"],
+)
+
+container_push(
+    name = "push",
+    image = ":latest",
+    format = "Docker",
+    registry = "registry.k0.hswaw.net",
+    repository = "q3k/cebulacamp-landing",
+    tag = "{BUILD_TIMESTAMP}-{STABLE_GIT_COMMIT}",
+)