mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-19 01:39:26 +01:00
16a151ae19
GitOrigin-RevId: 55a38effd769ab15a3e0893cac84754ffb1de5a0
37 lines
896 B
Python
37 lines
896 B
Python
load("@io_bazel_rules_docker//python3:image.bzl", "py3_image")
|
|
|
|
load("@pip_modules//:requirements.bzl", "requirement")
|
|
|
|
alias(
|
|
name = "binary",
|
|
actual = ":image.binary",
|
|
)
|
|
|
|
py3_image(
|
|
name = "image",
|
|
srcs = glob(["**/*.py"]),
|
|
base = "//images/production:base-python-image",
|
|
data = [
|
|
"configs/base.yaml",
|
|
"configs/logging.yaml",
|
|
],
|
|
main = "main.py",
|
|
srcs_version = "PY3ONLY",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("aiokafka"),
|
|
requirement("orjson"),
|
|
requirement("pypika"),
|
|
requirement("aiocrossref"),
|
|
requirement("aiokit"),
|
|
"//library/aiopostgres",
|
|
"//library/configurator",
|
|
"//library/logging",
|
|
"//nexus/actions",
|
|
"//nexus/models/proto:models_proto_py",
|
|
requirement("aiosumma"),
|
|
requirement("izihawa_utils"),
|
|
],
|
|
)
|
|
|