mirror of
https://github.com/alibaba/higress.git
synced 2026-02-06 23:21:08 +08:00
11 lines
450 B
Python
11 lines
450 B
Python
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
def wasm_extension_dependency():
|
|
# Need to push Wasm OCI images
|
|
http_archive(
|
|
name = "io_bazel_rules_docker",
|
|
sha256 = "92779d3445e7bdc79b961030b996cb0c91820ade7ffa7edca69273f404b085d5",
|
|
strip_prefix = "rules_docker-0.20.0",
|
|
urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v0.20.0/rules_docker-v0.20.0.tar.gz"],
|
|
)
|