Skip to content

Commit 797e896

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

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.25.5@sha256:8bbd14091f2c61916134fa6aeb8f76b18693fcb29a39ec6d8be9242c0a7e9260 AS builder
15+
FROM golang:1.26.3@sha256:313faae491b410a35402c05d35e7518ae99103d957308e940e1ae2cfa0aac29b AS builder
1616
ENV APP_ROOT=/opt/app-root
1717
ENV GOPATH=$APP_ROOT
1818

@@ -29,14 +29,14 @@ RUN go build -ldflags "${SERVER_LDFLAGS}" ./cmd/timestamp-server
2929
RUN CGO_ENABLED=0 go build -gcflags "all=-N -l" -ldflags "${SERVER_LDFLAGS}" -o timestamp-server_debug ./cmd/timestamp-server
3030

3131
# debug compile options & debugger
32-
FROM registry.redhat.io/ubi9/go-toolset:9.7-1774618347@sha256:a05a1c82b3ce23864a831084ff21a907128f4707ca3f455ba99717c0c2c4d6c1 as debug
32+
FROM registry.redhat.io/ubi9/go-toolset:9.7-1778675823@sha256:0706c592277dc4ea08b4ee7859d9e6ba978fed4dde78278624bf7bee91eddc10 as debug
3333
RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.0
3434

3535
# overwrite server and include debugger
3636
COPY --from=builder /opt/app-root/src/timestamp-server_debug /usr/local/bin/timestamp-server
3737

3838
# Multi-Stage production build
39-
FROM golang:1.25.5@sha256:8bbd14091f2c61916134fa6aeb8f76b18693fcb29a39ec6d8be9242c0a7e9260 AS deploy
39+
FROM golang:1.26.3@sha256:313faae491b410a35402c05d35e7518ae99103d957308e940e1ae2cfa0aac29b AS deploy
4040

4141
# Retrieve the binary from the previous stage
4242
COPY --from=builder /opt/app-root/src/timestamp-server /usr/local/bin/timestamp-server

Dockerfile.cli-stack.rh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM --platform=linux/arm64 quay.io/securesign/fetch-tsa-certs@sha256:784bf629
33
FROM --platform=linux/ppc64le quay.io/securesign/fetch-tsa-certs@sha256:ad659c674d7bfe8a59fc733b4656564b0bb5c35916abce274eb22d80111c86ba AS build-ppc64le
44
FROM --platform=linux/s390x quay.io/securesign/fetch-tsa-certs@sha256:81fecc40486c85cd3d42802b533ce625feb6ed704f63cea7de41c8eb974cb6d9 AS build-s390x
55

6-
FROM registry.redhat.io/ubi9/go-toolset:9.7-1774618347@sha256:0f4f6f7868962aa75dddfe4230b664bdf77071e92c43c70c824c58450e37693f AS packager
6+
FROM registry.redhat.io/ubi9/go-toolset:9.7-1778675823@sha256:90a36bc2013b3fcb28e2a4b082c9b895d7c2c679e58b95aed9721970f3339d0e AS packager
77
USER root
88
RUN mkdir -p /binaries
99

@@ -47,7 +47,7 @@ RUN gzip -d /tmp/fetch_tsa_certs_windows_amd64.exe.gz && \
4747
rm /tmp/fetch_tsa_certs_windows_amd64.exe
4848

4949
# Final minimal image with all binaries
50-
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:83006d535923fcf1345067873524a3980316f51794f01d8655be55d6e9387183
50+
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:12db9874bd753eb98b1ab3d840e75de5d6842ac0604fbd68c012adefe97140be
5151

5252
LABEL description="Flat image containing fetch-tsa-certs CLI binaries for all platforms and architectures"
5353
LABEL io.k8s.description="Flat image containing fetch-tsa-certs CLI binaries for all platforms and architectures"

Dockerfile.fetch_tsa_certs.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-1774618347@sha256:0f4f6f7868962aa75dddfe4230b664bdf77071e92c43c70c824c58450e37693f as build-env
1+
FROM registry.redhat.io/ubi9/go-toolset:9.7-1778675823@sha256:90a36bc2013b3fcb28e2a4b082c9b895d7c2c679e58b95aed9721970f3339d0e as build-env
22
ENV GOEXPERIMENT=strictfipsruntime
33
ENV CGO_ENABLED=1
44
ENV APP_ROOT=/opt/app-root
@@ -19,7 +19,7 @@ RUN go build -mod=readonly -o fetch_tsa_certs_linux -trimpath ./cmd/fetch-tsa-ce
1919
gzip fetch_tsa_certs_darwin_amd64 && \
2020
gzip fetch_tsa_certs_windows_amd64.exe
2121

22-
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:83006d535923fcf1345067873524a3980316f51794f01d8655be55d6e9387183
22+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:12db9874bd753eb98b1ab3d840e75de5d6842ac0604fbd68c012adefe97140be
2323
ENV APP_ROOT=/opt/app-root
2424
WORKDIR $APP_ROOT/src/
2525

Dockerfile.tsa.rh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM registry.redhat.io/ubi9/go-toolset:9.7-1774618347@sha256:a05a1c82b3ce23864a831084ff21a907128f4707ca3f455ba99717c0c2c4d6c1 AS builder
15+
FROM registry.redhat.io/ubi9/go-toolset:9.7-1778675823@sha256:0706c592277dc4ea08b4ee7859d9e6ba978fed4dde78278624bf7bee91eddc10 AS builder
1616
ENV GOEXPERIMENT=strictfipsruntime
1717
ENV CGO_ENABLED=1
1818
ENV APP_ROOT=/opt/app-root
@@ -29,14 +29,14 @@ RUN git config --global --add safe.directory /opt/app-root/src && \
2929
go build -mod=readonly -ldflags "${SERVER_LDFLAGS}" ./cmd/timestamp-server
3030

3131
# debug compile options & debugger
32-
FROM registry.redhat.io/ubi9/go-toolset:9.7-1774618347@sha256:a05a1c82b3ce23864a831084ff21a907128f4707ca3f455ba99717c0c2c4d6c1 AS debug
32+
FROM registry.redhat.io/ubi9/go-toolset:9.7-1778675823@sha256:0706c592277dc4ea08b4ee7859d9e6ba978fed4dde78278624bf7bee91eddc10 AS debug
3333
RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.0
3434

3535
# overwrite server and include debugger
3636
COPY --from=builder /opt/app-root/src/timestamp-server_debug /usr/local/bin/timestamp-server
3737

3838
# Multi-Stage production build
39-
FROM registry.access.redhat.com/ubi9-minimal@sha256:f5346fbb587b72b5376e66272935d22c62af78be2e8ea1dcf3e9e46865a9a2ee AS deploy
39+
FROM registry.access.redhat.com/ubi9-minimal@sha256:77bad043ffe39eb92b2346e935fa3023e3d072e93de21562f33847e42f3612e4 AS deploy
4040

4141
LABEL description="The timestamp-authority is a process that provides a timestamp record of when a document was created or modified."
4242
LABEL io.k8s.description="The timestamp-authority is a process that provides a timestamp record of when a document was created or modified."

0 commit comments

Comments
 (0)