mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-21 00:57:45 +01:00
38 lines
937 B
Python
38 lines
937 B
Python
|
load("@io_bazel_rules_docker//python3:image.bzl", "py3_image")
|
||
|
|
||
|
load("@pip_modules_external//: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",
|
||
|
"//nexus/summa/schema",
|
||
|
requirement("aiosumma"),
|
||
|
requirement("izihawa_utils"),
|
||
|
],
|
||
|
)
|
||
|
|