Skip to content

Commit 0daeac8

Browse files
Merge pull request #583 from securesign/eli/baseImageMain
[CVE Surface Reduction] Image Updates Main
2 parents c2ae4d3 + 385dc54 commit 0daeac8

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

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.7 AS build
1+
FROM registry.redhat.io/ubi9/go-toolset:9.7@sha256:799cc027d5ad58cdc156b65286eb6389993ec14c496cf748c09834b7251e78dc AS build
22
ENV APP_ROOT=/opt/app-root \
33
GOPATH=/opt/app-root \
44
CGO_ENABLED=1 \
@@ -19,7 +19,7 @@ RUN go mod download && \
1919
gzip createtree-windows-amd64.exe
2020

2121
# Multi-Stage production build
22-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:bb08f2300cb8d12a7eb91dddf28ea63692b3ec99e7f0fa71a1b300f2756ea829 AS deploy
22+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS deploy
2323

2424
# Add license file
2525
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:fcd896292e9d4c1fa53156436c47fac3fedf4a1d7d7ec3d607a8160b5cef3b83
1+
FROM registry.redhat.io/rhel9/mariadb-105@sha256:0bfc5429881f8057398bb41b5e699c9327b3483d412af2db194a0b0798674221
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.7@sha256:359dd4c6c4255b3f7bce4dc15ffa5a9aa65a401f819048466fa91baa8244a793 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:9.7@sha256:799cc027d5ad58cdc156b65286eb6389993ec14c496cf748c09834b7251e78dc AS builder
22
ENV APP_ROOT=/opt/app-root
33
ENV GOPATH=$APP_ROOT
44
ENV CGO_ENABLED=1
@@ -16,7 +16,7 @@ ADD ./ $APP_ROOT/src/
1616
RUN go build -mod=mod -v ./cmd/trillian_log_server
1717

1818
# Multi-Stage production build
19-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:bb08f2300cb8d12a7eb91dddf28ea63692b3ec99e7f0fa71a1b300f2756ea829 AS deploy
19+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS deploy
2020

2121
# Retrieve the binary from the previous stage
2222
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.7@sha256:359dd4c6c4255b3f7bce4dc15ffa5a9aa65a401f819048466fa91baa8244a793 AS builder
1+
FROM registry.redhat.io/ubi9/go-toolset:9.7@sha256:799cc027d5ad58cdc156b65286eb6389993ec14c496cf748c09834b7251e78dc AS builder
22
ENV APP_ROOT=/opt/app-root
33
ENV GOPATH=$APP_ROOT
44
ENV CGO_ENABLED=1
@@ -16,7 +16,7 @@ ADD ./ $APP_ROOT/src/
1616
RUN go build -mod=mod -v ./cmd/trillian_log_signer
1717

1818
# Multi-Stage production build
19-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:bb08f2300cb8d12a7eb91dddf28ea63692b3ec99e7f0fa71a1b300f2756ea829 AS deploy
19+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS deploy
2020

2121
# Retrieve the binary from the previous stage
2222
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:bb08f2300cb8d12a7eb91dddf28ea63692b3ec99e7f0fa71a1b300f2756ea829
1+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0
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:0c9db54a0ec18917e0ed82bf85e9a08ddc570fcccb2e2086683aeba3db284e27
1+
FROM registry.redhat.io/rhel9/redis-6@sha256:3120501cce2159fddb8ffe6453ef1ddb05309b061d261345672da40b5aea3ee5
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.7 AS build
1+
FROM registry.redhat.io/ubi9/go-toolset:9.7@sha256:799cc027d5ad58cdc156b65286eb6389993ec14c496cf748c09834b7251e78dc AS build
22
ENV APP_ROOT=/opt/app-root \
33
GOPATH=/opt/app-root \
44
CGO_ENABLED=1 \
@@ -19,7 +19,7 @@ RUN go mod download && \
1919
gzip updatetree-windows-amd64.exe
2020

2121
# Multi-Stage production build
22-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:bb08f2300cb8d12a7eb91dddf28ea63692b3ec99e7f0fa71a1b300f2756ea829 AS deploy
22+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:c7d44146f826037f6873d99da479299b889473492d3c1ab8af86f08af04ec8a0 AS deploy
2323

2424
# Add license file
2525
COPY LICENSE /licenses/LICENSE

0 commit comments

Comments
 (0)