Skip to content

Commit 58d62a4

Browse files
authored
chore: Upgrade Operator and feature-server images to ubi9 (#5306)
Signed-off-by: Tommy Hughes <tohughes@redhat.com>
1 parent 3a787ac commit 58d62a4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

infra/feast-operator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM registry.access.redhat.com/ubi8/go-toolset:1.22.9 AS builder
2+
FROM registry.access.redhat.com/ubi9/go-toolset:1.22.9 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

@@ -22,7 +22,7 @@ COPY internal/controller/ internal/controller/
2222
# by leaving it empty we can ensure that the container and binary shipped on it will have the same platform.
2323
RUN CGO_ENABLED=0 GOOS=${TARGETOS:-linux} GOARCH=${TARGETARCH} go build -a -o manager cmd/main.go
2424

25-
FROM registry.access.redhat.com/ubi8/ubi-micro:8.10
25+
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5
2626
WORKDIR /
2727
COPY --from=builder /opt/app-root/src/manager .
2828
USER 65532:65532

sdk/python/feast/infra/feature_servers/multicloud/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/python-311:1
1+
FROM registry.access.redhat.com/ubi9/python-311:1
22

33
COPY requirements.txt requirements.txt
44
RUN pip install -r requirements.txt

sdk/python/feast/infra/feature_servers/multicloud/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/python-311:1
1+
FROM registry.access.redhat.com/ubi9/python-311:1
22

33
USER 0
44
RUN npm install -g yarn yalc && rm -rf .npm

sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yarn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/python-311:1
1+
FROM registry.access.redhat.com/ubi9/python-311:1
22
ARG RELEASE
33

44
USER 0

sdk/python/feast/infra/feature_servers/multicloud/offline/Dockerfile.builder.yum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/python-311:1
1+
FROM registry.access.redhat.com/ubi9/python-311:1
22
ARG RELEASE
33

44
USER 0

0 commit comments

Comments
 (0)