Skip to content

Commit a4a9826

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

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.26.3@sha256:633d23bf362cb40dd72b4f277288a8929697d77537f9c801b81aeced19b5bdf3 AS builder
15+
FROM golang:1.26.3@sha256:8530a4fd262b294857b6c1d07203f57261863cafe5924f90ebdb4ba96b16ad15 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-1778604137@sha256:44c8daf6a688637dd9f1eb289b1fdbe63eae7e8bca3ec06c33018c483516090d as debug
32+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1777889793@sha256:c478bdd1b07b94baed0e8e958050eb659576d1b1f69287d4e2af865c567f40c0 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.26.3@sha256:633d23bf362cb40dd72b4f277288a8929697d77537f9c801b81aeced19b5bdf3 AS deploy
39+
FROM golang:1.26.3@sha256:8530a4fd262b294857b6c1d07203f57261863cafe5924f90ebdb4ba96b16ad15 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:c43c8a02
33
FROM --platform=linux/ppc64le quay.io/securesign/fetch-tsa-certs@sha256:a26796b80b58dcb329c5e2ce8b8b7ffdb0bcb787d0411d47f746c1a0998f3702 AS build-ppc64le
44
FROM --platform=linux/s390x quay.io/securesign/fetch-tsa-certs@sha256:7019d659fe77828cc9dead16760ecf8314e7b55cb0cf68c6e2f2470638a86558 AS build-s390x
55

6-
FROM registry.redhat.io/ubi9/go-toolset:9.7-1778604137@sha256:e06a6f4c85c3ca75f64127542449c9770fb885adfb592f987c576d268ac108de AS packager
6+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1777889793@sha256:1c1259373e6feb4b57de490452379c40888cf6e876154cd2ace17eae9c64a7ea 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:12db9874bd753eb98b1ab3d840e75de5d6842ac0604fbd68c012adefe97140be
50+
FROM registry.redhat.io/ubi9/ubi-minimal@sha256:24650313873554b6ba16c1a1b6b9f9142604f6ab735113e1695faf2dd07fdede
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-1778604137@sha256:e06a6f4c85c3ca75f64127542449c9770fb885adfb592f987c576d268ac108de as build-env
1+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1777889793@sha256:1c1259373e6feb4b57de490452379c40888cf6e876154cd2ace17eae9c64a7ea 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:12db9874bd753eb98b1ab3d840e75de5d6842ac0604fbd68c012adefe97140be
22+
FROM registry.access.redhat.com/ubi9/ubi-minimal@sha256:24650313873554b6ba16c1a1b6b9f9142604f6ab735113e1695faf2dd07fdede
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-1778604137@sha256:44c8daf6a688637dd9f1eb289b1fdbe63eae7e8bca3ec06c33018c483516090d AS builder
15+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1777889793@sha256:c478bdd1b07b94baed0e8e958050eb659576d1b1f69287d4e2af865c567f40c0 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-1778604137@sha256:44c8daf6a688637dd9f1eb289b1fdbe63eae7e8bca3ec06c33018c483516090d AS debug
32+
FROM registry.redhat.io/ubi9/go-toolset:9.8-1777889793@sha256:c478bdd1b07b94baed0e8e958050eb659576d1b1f69287d4e2af865c567f40c0 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:77bad043ffe39eb92b2346e935fa3023e3d072e93de21562f33847e42f3612e4 AS deploy
39+
FROM registry.access.redhat.com/ubi9-minimal@sha256:10c773dc96763e3201275bae7865d278ca4b91db586117adec79079a2d7cdb80 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)