blob: 9fa8ba37a47396d7c9a175b5cccbb37b2dfc3eac [file] [log] [blame]
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",
directory = "/hscloud",
entrypoint = ["/hscloud/backend"],
files = ["//bgpwtf/speedtest/backend"],
)
container_push(
name = "push",
format = "Docker",
image = ":latest",
registry = "registry.k0.hswaw.net",
repository = "q3k/speedtest",
tag = "{BUILD_TIMESTAMP}-{STABLE_GIT_COMMIT}",
)