We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f2c3fa + f8a1315 commit 2743707Copy full SHA for 2743707
1 file changed
justfile
@@ -71,8 +71,10 @@ _build features="":
71
docker build -t {{ORG}}/{{NAME}}:{{TAG}} .
72
73
# docker build base
74
-build-base features="":
75
- just _build {{features}}
+build-base: (_build "")
+
76
+# docker build base with agent initiated
77
+build-agent-initiated: (_build "agent-initiated")
78
79
# docker build with telemetry
80
build-otel: (_build "telemetry")
@@ -82,7 +84,7 @@ docker-push:
82
84
docker push {{ORG}}/{{NAME}}:{{TAG}}
83
85
86
load-base features="":
- just build-base {{features}}
87
+ just _build {{features}}
88
kind load docker-image {{ORG}}/{{NAME}}:{{TAG}} --name dev
89
90
# Start local dev environment
0 commit comments