blob: 607790fc8379138cb16b47418dc9fe4ac807dffa [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 = [
"cebula2020.jpeg",
"hotel-orle.jpg",
"index.html",
"style/main.css",
],
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",
directory = "/hscloud/hswaw/cebulacamp/landing",
entrypoint = ["/hscloud/hswaw/cebulacamp/landing/backend"],
files = ["//hswaw/cebulacamp/landing/backend"],
)
container_push(
name = "push",
format = "Docker",
image = ":latest",
registry = "registry.k0.hswaw.net",
repository = "q3k/cebulacamp-landing",
tag = "{BUILD_TIMESTAMP}-{STABLE_GIT_COMMIT}",
)