Skip to content

Commit 6c09e9b

Browse files
chore(deps): update docker images
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent c4a1f38 commit 6c09e9b

15 files changed

Lines changed: 23 additions & 23 deletions

File tree

Dockerfile.cli-stack.rh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:9.8@sha256:355b23fe885cf565c9313a7e98db742df0aec21456244e808942c56489594251 AS build-cross-platform
1+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1782736563@sha256:83cfd595f20e494cea9dc6526f217441e60bb9c5da85b33157c761e5f6a3d852 AS build-cross-platform
22
ENV APP_ROOT=/opt/app-root \
33
GOPATH=/opt/app-root \
44
CGO_ENABLED=0 \
@@ -24,7 +24,7 @@ FROM --platform=linux/arm64 quay.io/securesign/trillian-updatetree@sha256:ca58
2424
FROM --platform=linux/ppc64le quay.io/securesign/trillian-updatetree@sha256:ca583b6dc1b05c46bb81a90c85f2c085973022fe147258fa2ae31672683341cf AS updatetree-ppc64le
2525
FROM --platform=linux/s390x quay.io/securesign/trillian-updatetree@sha256:ca583b6dc1b05c46bb81a90c85f2c085973022fe147258fa2ae31672683341cf AS updatetree-s390x
2626

27-
FROM registry.redhat.io/ubi9/go-toolset:9.8@sha256:355b23fe885cf565c9313a7e98db742df0aec21456244e808942c56489594251 AS packager
27+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1782736563@sha256:83cfd595f20e494cea9dc6526f217441e60bb9c5da85b33157c761e5f6a3d852 AS packager
2828
USER root
2929
RUN mkdir -p /binaries
3030

@@ -91,7 +91,7 @@ RUN tar -czf /binaries/updatetree_windows_amd64.tar.gz -C /tmp updatetree.exe &&
9191
RUN chmod -R a+rX /binaries
9292

9393
# Final minimal image with all binaries
94-
FROM registry.redhat.io/ubi9/ubi-micro:9.8@sha256:b498b3ea26111ab4b81d65139f2ebd2ef9a2abb7a4588b7fdcc54889f95e9caa
94+
FROM registry.redhat.io/ubi9/ubi-micro:9.8-1782363471@sha256:fdf68a4f5f88cca14ae906bbec6e0fbbffe92b5b91e73e0862c961234d63b986
9595

9696
LABEL description="Flat image containing createtree and updatetree CLI binaries for all platforms and architectures"
9797
LABEL io.k8s.description="Flat image containing createtree and updatetree CLI binaries for all platforms and architectures"

Dockerfile.createtree.rh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:9.8@sha256:355b23fe885cf565c9313a7e98db742df0aec21456244e808942c56489594251 AS build
1+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1782736563@sha256:83cfd595f20e494cea9dc6526f217441e60bb9c5da85b33157c761e5f6a3d852 AS build
22
ENV APP_ROOT=/opt/app-root \
33
GOPATH=/opt/app-root \
44
CGO_ENABLED=0 \
@@ -14,7 +14,7 @@ RUN go mod download && \
1414
go build -mod=mod -tags no_openssl -o createtree -trimpath ./cmd/createtree
1515

1616
# Multi-Stage production build
17-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:8d0a8fb39ec907e8ca62cdd24b62a63ca49a30fe465798a360741fde58437a23 AS deploy
17+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c5478a52c410e71c53839923c83a1480199a1e74ce5736fe3e3a5578dc399102 AS deploy
1818

1919
# Add license file
2020
COPY LICENSE /licenses/LICENSE

Dockerfile.database.rh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/rhel9/mariadb-105@sha256:04b4c4d865e6d56d44e6bad3e100ae14e66052ee0ea84368c74b014b883647e4
1+
FROM registry.redhat.io/rhel9/mariadb-105@sha256:451583e8509429468577283407a33e29411f56e343f7381f7d722f8488de0fe9
22

33
USER root
44

Dockerfile.logserver.rh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:9.8@sha256:355b23fe885cf565c9313a7e98db742df0aec21456244e808942c56489594251 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1782736563@sha256:83cfd595f20e494cea9dc6526f217441e60bb9c5da85b33157c761e5f6a3d852 AS builder
22
ENV APP_ROOT=/opt/app-root
33
ENV GOPATH=$APP_ROOT
44
ENV CGO_ENABLED=0
@@ -15,7 +15,7 @@ ADD ./ $APP_ROOT/src/
1515
RUN go build -mod=mod -tags no_openssl -v ./cmd/trillian_log_server
1616

1717
# Multi-Stage production build
18-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:8d0a8fb39ec907e8ca62cdd24b62a63ca49a30fe465798a360741fde58437a23 AS deploy
18+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c5478a52c410e71c53839923c83a1480199a1e74ce5736fe3e3a5578dc399102 AS deploy
1919

2020
# Retrieve the binary from the previous stage
2121
COPY --from=builder /opt/app-root/src/trillian_log_server /

Dockerfile.logsigner.rh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:9.8@sha256:355b23fe885cf565c9313a7e98db742df0aec21456244e808942c56489594251 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1782736563@sha256:83cfd595f20e494cea9dc6526f217441e60bb9c5da85b33157c761e5f6a3d852 AS builder
22
ENV APP_ROOT=/opt/app-root
33
ENV GOPATH=$APP_ROOT
44
ENV CGO_ENABLED=0
@@ -15,7 +15,7 @@ ADD ./ $APP_ROOT/src/
1515
RUN go build -mod=mod -tags no_openssl -v ./cmd/trillian_log_signer
1616

1717
# Multi-Stage production build
18-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:8d0a8fb39ec907e8ca62cdd24b62a63ca49a30fe465798a360741fde58437a23 AS deploy
18+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c5478a52c410e71c53839923c83a1480199a1e74ce5736fe3e3a5578dc399102 AS deploy
1919

2020
# Retrieve the binary from the previous stage
2121
COPY --from=builder /opt/app-root/src/trillian_log_signer /

Dockerfile.netcat.rh

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/ubi-minimal@sha256:8d0a8fb39ec907e8ca62cdd24b62a63ca49a30fe465798a360741fde58437a23
1+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c5478a52c410e71c53839923c83a1480199a1e74ce5736fe3e3a5578dc399102
22

33
LABEL description="Netcat is a computer networking utility for reading from and writing to network connections using TCP or UDP."
44
LABEL io.k8s.description="netcat is a computer networking utility for reading from and writing to network connections using TCP or UDP."

Dockerfile.redis.rh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/rhel9/redis-6@sha256:7cd55174d27b41f59c2a0831cc31a5557a90f81d51f30c1e26232303898671ea
1+
FROM registry.redhat.io/rhel9/redis-6@sha256:3a243218d38169a179692f76d050ac5226984d62c968b444c666ab7ecfa06317
22

33
LABEL description="Securesign redis is built ontop of rhel9/redis-6 but accepts external connections and runs appendonly mode with full durability."
44
LABEL io.k8s.description="Securesign redis is built ontop of rhel9/redis-6 but accepts external connections and runs appendonly mode with full durability."

Dockerfile.updatetree.rh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.redhat.io/ubi9/go-toolset:9.8@sha256:355b23fe885cf565c9313a7e98db742df0aec21456244e808942c56489594251 AS build
1+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1782736563@sha256:83cfd595f20e494cea9dc6526f217441e60bb9c5da85b33157c761e5f6a3d852 AS build
22
ENV APP_ROOT=/opt/app-root \
33
GOPATH=/opt/app-root \
44
CGO_ENABLED=0 \
@@ -14,7 +14,7 @@ RUN go mod download && \
1414
go build -mod=mod -tags no_openssl -o updatetree -trimpath ./cmd/updatetree
1515

1616
# Multi-Stage production build
17-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:8d0a8fb39ec907e8ca62cdd24b62a63ca49a30fe465798a360741fde58437a23 AS deploy
17+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c5478a52c410e71c53839923c83a1480199a1e74ce5736fe3e3a5578dc399102 AS deploy
1818

1919
# Add license file
2020
COPY LICENSE /licenses/LICENSE

examples/deployment/docker/db_server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mysql:9.7@sha256:cf40d2c53b86849a8d31bc5784d74a7c3a7b5545f4e5d67691ce8fa19dbf080b
1+
FROM mysql:9.7@sha256:ad88e1c86cbf12ef52d0a0360cd4b774d22956c5ee9c565645fb019d7aacb6c3
22

33

44
# TODO(roger2hk): Uncomment the below OS-level packages patch command as this is a temporary workaround to bypass the mysql8 gpg key rotation issue.

examples/deployment/docker/db_server/postgresql/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:18.3@sha256:a9abf4275f9e99bff8e6aed712b3b7dfec9cac1341bba01c1ffdfce9ff9fc34a
1+
FROM postgres:18.4@sha256:4aabea78cf39b90e834caf3af7d602a18565f6fe2508705c8d01aa63245c2e20
22

33
# expects the build context to be: $GOPATH/src/github.com/google/trillian
44
COPY storage/postgresql/schema/storage.sql /docker-entrypoint-initdb.d/storage.sql

0 commit comments

Comments
 (0)