mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00
16 lines
457 B
Text
16 lines
457 B
Text
load("github.com/cirrus-modules/helpers", "task", "container", "script")
|
|
|
|
task_name = "alpine"
|
|
|
|
def zeek_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": zeek_task,
|
|
"broker_task": None}
|