File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,9 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -o manager main.go
19
19
20
20
# Use distroless as minimal base image to package the manager binary
21
21
# Refer to https://github.com/GoogleContainerTools/distroless for more details
22
- FROM gcr.io/distroless/static:nonroot
22
+ FROM alpine:latest
23
23
WORKDIR /
24
24
COPY --from=builder /workspace/manager .
25
- USER 65532:65532
25
+ # USER 65532:65532
26
26
27
27
ENTRYPOINT ["/manager" ]
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
28
28
# This variable is used to construct full image tags for bundle and catalog images.
29
29
#
30
30
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
31
- # mycontroller.org /mycontroller-operator-bundle:$VERSION and mycontroller.org /mycontroller-operator-catalog:$VERSION.
32
- IMAGE_TAG_BASE ?= mycontroller.org /mycontroller-operator
31
+ # jkandasa /mycontroller-operator-bundle:$VERSION and jkandasa /mycontroller-operator-catalog:$VERSION.
32
+ IMAGE_TAG_BASE ?= jkandasa /mycontroller-operator
33
33
34
34
# BUNDLE_IMG defines the image:tag used for the bundle.
35
35
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
You can’t perform that action at this time.
0 commit comments