Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): Bump ubi9/ubi-micro from 9.4-13 to 9.4-15 in /scheduler #5877

Merged
merged 1 commit into from
Sep 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scheduler/Dockerfile.agent
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apk add --no-cache make
RUN make -C scheduler -o test-go build-agent

# Copy binary
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-13
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-15

RUN mkdir /mnt/agent && chmod o+rwx /mnt/agent
VOLUME /mnt/agent
Expand Down
2 changes: 1 addition & 1 deletion scheduler/Dockerfile.envoy
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM envoyproxy/envoy:v1.31.0 as envoy

FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-13
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-15

COPY --from=envoy /usr/local/bin/envoy /usr/local/bin/envoy

Expand Down
2 changes: 1 addition & 1 deletion scheduler/Dockerfile.modelgateway
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN make -C scheduler -o test-go build-modelgateway
FROM registry.access.redhat.com/ubi9/ubi-minimal as certs

# Kafka dependencies necessitate leaving CGo enabled and using a base image with C dependencies
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-13
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-15

# Kafka OIDC token retrieve certs (librdkafka using curl): https://github.com/confluentinc/librdkafka/issues/3751
COPY --from=certs /etc/ssl/certs/ca-bundle.crt /etc/ssl/certs/ca-certificates.crt
Expand Down
2 changes: 1 addition & 1 deletion scheduler/Dockerfile.pipelinegateway
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN make -C scheduler -o test-go build-pipelinegateway
FROM registry.access.redhat.com/ubi9/ubi-minimal as certs

# Kafka dependencies necessitate leaving CGo enabled and using a base image with C dependencies
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-13
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-15

# Kafka OIDC token retrieve certs (librdkafka using curl): https://github.com/confluentinc/librdkafka/issues/3751
COPY --from=certs /etc/ssl/certs/ca-bundle.crt /etc/ssl/certs/ca-certificates.crt
Expand Down
2 changes: 1 addition & 1 deletion scheduler/Dockerfile.scheduler
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt-get install make
RUN make -C scheduler -o test-go build-scheduler

# Kafka dependencies necessitate leaving CGo enabled and using a base image with C dependencies
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-13
FROM registry.access.redhat.com/ubi9/ubi-micro:9.4-15
COPY --from=builder /build/scheduler/bin/scheduler /bin/scheduler

# Copy licenses
Expand Down
Loading