Skip to content

Commit 5204542

Browse files
committed
dexop: fix container builds
1 parent 4bc86a3 commit 5204542

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

go/dexop/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.22 AS builder
2+
FROM golang:1.23 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

@@ -15,6 +15,7 @@ RUN go mod download
1515
COPY cmd/main.go cmd/main.go
1616
COPY api/ api/
1717
COPY internal/controller/ internal/controller/
18+
COPY dex/ dex/
1819

1920
# Build
2021
# the GOARCH has not a default value to allow the binary be built according to the host where the command

go/dexop/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
2828
# This variable is used to construct full image tags for bundle and catalog images.
2929
#
3030
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
31-
# rax.io/dexop-bundle:$VERSION and rax.io/dexop-catalog:$VERSION.
32-
IMAGE_TAG_BASE ?= rax.io/dexop
31+
# ghcr.io/understack/dexop-bundle:$VERSION and ghcr.io/understack/dexop-catalog:$VERSION.
32+
IMAGE_TAG_BASE ?= ghcr.io/understack/dexop
3333

3434
# BUNDLE_IMG defines the image:tag used for the bundle.
3535
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)

0 commit comments

Comments
 (0)