mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00
16 lines
471 B
Text
16 lines
471 B
Text
load("github.com/cirrus-modules/helpers", "task", "container", "script")
|
|
|
|
task_name = "centos-stream-10"
|
|
|
|
def broker_task():
|
|
container_file = fs.read("Dockerfile")
|
|
return task(name=task_name,
|
|
instance=container(container_file),
|
|
instructions=[
|
|
script("Building alpine"),
|
|
])
|
|
|
|
def config():
|
|
return {"task_name": task_name,
|
|
"zeek_task": None,
|
|
"broker_task": broker_task}
|