mirror of
https://github.com/dagger/dagger-for-github.git
synced 2026-01-01 13:10:18 +11:00
14 lines
241 B
CUE
14 lines
241 B
CUE
package main
|
|
|
|
import (
|
|
"alpha.dagger.io/docker"
|
|
"alpha.dagger.io/git"
|
|
)
|
|
|
|
ctr: docker.#Build & {
|
|
source: git.#Repository & {
|
|
remote: "https://github.com/crazy-max/docker-fail2ban.git"
|
|
ref: "refs/tags/0.11.2-r3"
|
|
keepGitDir: true
|
|
}
|
|
}
|