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", "speedtest.js", "speedtest_worker.js"], package = "static", ) # keep go_library( name = "static_go", srcs = [":static"], importpath = "code.hackerspace.pl/hscloud/bgpwtf/speedtest/static", visibility = ["//visibility:public"], ) container_image( name="latest", base="@prodimage-bionic//image", files = ["//bgpwtf/speedtest/backend:backend"], directory = "/hscloud", entrypoint = ["/hscloud/backend"], ) container_push( name = "push", image = ":latest", format = "Docker", registry = "registry.k0.hswaw.net", repository = "q3k/speedetst", tag = "{BUILD_TIMESTAMP}-{STABLE_GIT_COMMIT}", )