Files
grafana/scripts/drone/dagger.star
Jev Forsberg ccd7b6ce7e Chore: Add bash to dagger env and fix rgm tag step (#108349)
baldm0mma/ add bash and fix rgm tag step
2025-07-18 14:18:43 -06:00

10 lines
347 B
Plaintext

"""
Utilities / functions for working with dagger pipelines
"""
def with_dagger_install(commands = [], dagger_version = ""):
return [
"wget -qO- https://github.com/dagger/dagger/releases/download/{}/dagger_{}_linux_amd64.tar.gz | tar zx -C /bin".format(dagger_version, dagger_version),
"apk add docker bash",
] + commands