We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d6b574 commit ec4a1f9Copy full SHA for ec4a1f9
.gitignore
@@ -1,6 +1,7 @@
1
# Operator's binaries
2
/manager
3
/manager-hub
4
+/worker
5
6
# Binaries for programs and plugins
7
*.exe
Makefile
@@ -360,4 +360,8 @@ catalog-push: ## Push a catalog image.
360
signimage-build: ## Build docker image with the signer.
361
docker build -f Dockerfile.signimage -t $(SIGNER_IMG) .
362
363
+.PHONY: workerimage-build
364
+workerimage-build: ## Build docker image for worker app.
365
+ docker build -f Dockerfile.worker -t $(WORKER_IMG) .
366
+
367
include docs.mk
skipper.env
@@ -13,5 +13,6 @@ KUBECONFIG
13
VERSION
14
REPO
15
IMG
16
+WORKER_IMG
17
TEST
18
SIGNER_IMG
0 commit comments