mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-11-18 17:29:26 +01:00
d51e5ab65d
- fix: Translation fixes - fix: Various fixes - feat: PB translations, configuration changes - fix: Bugfixes GitOrigin-RevId: 55f8b148c42a296162fc707c36a5146ca0073b4b
35 lines
808 B
Python
35 lines
808 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("aiopg"),
|
|
requirement("fire"),
|
|
requirement("aiocrossref"),
|
|
requirement("aiokit"),
|
|
requirement("aiolibgen"),
|
|
"//library/aiopostgres",
|
|
"//library/configurator",
|
|
"//library/logging",
|
|
"//nexus/actions",
|
|
],
|
|
)
|
|
|