File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
- include project.mk
1
+ IMAGE_REGISTRY? =quay.io
2
+ IMAGE_REPOSITORY? =app-sre
3
+ IMAGE_NAME? =configuration-anomaly-detection
4
+ DOCKERFILE? =./build/Dockerfile
5
+ define ADDITIONAL_IMAGE_SPECS
6
+ ./build/Dockerfile $(IMAGE_REGISTRY ) /$(IMAGE_REPOSITORY ) /$(IMAGE_NAME ) :$(CURRENT_COMMIT )
7
+ endef
8
+
2
9
include boilerplate/generated-includes.mk
3
10
4
11
GOLANGCI_LINT_VERSION =v1.59.1
@@ -121,4 +128,4 @@ install-linter: check-curl-install check-go121-install
121
128
122
129
.PHONY : install-mockgen
123
130
install-mockgen : check-go121-install
124
- @type mockgen 1> /dev/null || (echo && echo " Installing 'mockgen'..." && go install go.uber.org/mock/mockgen@$( MOCKGEN_VERSION) )
131
+ @type mockgen 1> /dev/null || (echo && echo " Installing 'mockgen'..." && go install go.uber.org/mock/mockgen@$( MOCKGEN_VERSION) )
Original file line number Diff line number Diff line change 1
- ARG BUILDER_IMG=registry.ci.openshift.org/openshift/release:golang-1.21
2
- FROM $BUILDER_IMG as builder
1
+ FROM quay.io/redhat-services-prod/openshift/boilerplate:image-v6.0.1 as builder
3
2
4
3
ADD . /opt
5
4
WORKDIR /opt
You can’t perform that action at this time.
0 commit comments