Skip to content

Commit f89f1a4

Browse files
authored
chore: Switch base builder images to ubi8 (v0.43-branch) (#4988)
* chore: Switch base builder images to ubi8 (#4987) switch base images to ubi8 Signed-off-by: Tommy Hughes <tohughes@redhat.com> * force feast-ui to be built locally Signed-off-by: Tommy Hughes <tohughes@redhat.com> * force feast-ui to be built locally Signed-off-by: Tommy Hughes <tohughes@redhat.com> --------- Signed-off-by: Tommy Hughes <tohughes@redhat.com>
1 parent 5746929 commit f89f1a4

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

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/ubi9/go-toolset:1.22.9 AS builder
2+
FROM registry.access.redhat.com/ubi8/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/ubi9/ubi-micro:9.5
25+
FROM registry.access.redhat.com/ubi8/ubi-micro:8.10
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/ubi9/python-311:9.5
1+
FROM registry.access.redhat.com/ubi8/python-311:1
22

33
ARG VERSION
44
RUN pip install "feast[aws,gcp,snowflake,redis,go,mysql,postgres,opentelemetry,grpcio,k8s,duckdb,milvus]"==${VERSION}

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/ubi9/python-311:9.5
1+
FROM registry.access.redhat.com/ubi8/python-311:1
22

33
COPY --chown=default . ${APP_ROOT}/src
44
RUN pip install --no-cache-dir pip-tools && \

0 commit comments

Comments
 (0)