2021-04-09 14:27:58 +02:00
|
|
|
load("@io_bazel_rules_docker//python3:image.bzl", "py3_image")
|
|
|
|
load("@io_bazel_rules_docker//container:container.bzl", "container_push")
|
2021-04-09 15:01:57 +02:00
|
|
|
|
2021-04-09 14:27:58 +02:00
|
|
|
load("@pip_modules//:requirements.bzl", "requirement")
|
|
|
|
|
|
|
|
alias(
|
|
|
|
name = "binary",
|
|
|
|
actual = ":image.binary",
|
|
|
|
)
|
|
|
|
|
|
|
|
py3_image(
|
|
|
|
name = "image",
|
|
|
|
srcs = glob(
|
|
|
|
["**/*.py"],
|
|
|
|
exclude = ["proto/**"],
|
|
|
|
),
|
|
|
|
base = "//images/production:base-python-image",
|
|
|
|
data = [
|
|
|
|
"configs/base.yaml",
|
|
|
|
"configs/logging.yaml",
|
|
|
|
],
|
|
|
|
main = "main.py",
|
|
|
|
srcs_version = "PY3ONLY",
|
|
|
|
visibility = ["//visibility:public"],
|
|
|
|
deps = [
|
|
|
|
requirement("aiodns"),
|
|
|
|
requirement("aiohttp"),
|
|
|
|
requirement("aiohttp_socks"),
|
|
|
|
requirement("aioipfs"),
|
|
|
|
requirement("cchardet"),
|
|
|
|
requirement("orjson"),
|
|
|
|
requirement("prometheus-client"),
|
|
|
|
requirement("psycopg2-binary"),
|
|
|
|
requirement("python-socks"),
|
|
|
|
requirement("tenacity"),
|
|
|
|
requirement("uvloop"),
|
2021-04-12 19:47:21 +02:00
|
|
|
"//idm/api/proto:idm_proto_py",
|
2021-04-09 14:27:58 +02:00
|
|
|
requirement("giogrobid"),
|
|
|
|
"//library/aiogrpctools",
|
|
|
|
requirement("aiokit"),
|
|
|
|
"//library/aiopostgres",
|
|
|
|
"//library/configurator",
|
|
|
|
"//library/telegram",
|
|
|
|
"//nexus/hub/proto:hub_grpc_py",
|
|
|
|
"//nexus/hub/proto:hub_proto_py",
|
|
|
|
"//nexus/meta_api/aioclient",
|
|
|
|
"//nexus/models/proto:models_proto_py",
|
|
|
|
"//nexus/pylon",
|
|
|
|
"//nexus/views/telegram",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
container_push(
|
|
|
|
name = "push-latest",
|
|
|
|
format = "Docker",
|
|
|
|
image = ":image",
|
|
|
|
registry = "registry.example.com",
|
|
|
|
repository = "nexus-hub",
|
|
|
|
tag = "latest",
|
|
|
|
)
|
|
|
|
|
|
|
|
container_push(
|
|
|
|
name = "push-testing",
|
|
|
|
format = "Docker",
|
|
|
|
image = ":image",
|
|
|
|
registry = "registry.example.com",
|
|
|
|
repository = "nexus-hub",
|
|
|
|
tag = "testing",
|
|
|
|
)
|
|
|
|
|