File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ bundle.Dockerfile
5
5
# Operator's binaries
6
6
/manager
7
7
/manager-hub
8
+ /worker
8
9
9
10
# Binaries for programs and plugins
10
11
* .exe
Original file line number Diff line number Diff line change @@ -349,6 +349,10 @@ catalog-push: ## Push a catalog image.
349
349
signimage-build : # # Build docker image with the signer.
350
350
docker build -f Dockerfile.signimage -t $(SIGNER_IMG ) .
351
351
352
+ .PHONY : workerimage-build
353
+ workerimage-build : # # Build docker image for worker app.
354
+ docker build -f Dockerfile.worker -t $(WORKER_IMG ) .
355
+
352
356
operatorhub-release :
353
357
IMG=$(IMG ) HUB_IMG=$(HUB_IMG ) VERSION=$(VERSION ) ./hack/release-operatorhub
354
358
Original file line number Diff line number Diff line change @@ -13,4 +13,5 @@ KUBECONFIG
13
13
VERSION
14
14
REPO
15
15
IMG
16
+ WORKER_IMG
16
17
TEST
You can’t perform that action at this time.
0 commit comments