Skip to content

Commit caa5801

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

3 files changed

Lines changed: 8 additions & 8 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.24.2@sha256:1ecc479bc712a6bdb56df3e346e33edcc141f469f82840bab9f4bc2bc41bf91d AS builder
15+
FROM golang:1.24.3@sha256:86b4cff66e04d41821a17cea30c1031ed53e2635e2be99ae0b4a7d69336b5063 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.access.redhat.com/ubi9/go-toolset@sha256:f19ff01afb737427564c179e454a5a61f27362cf6c8314d1e0b1993f97db7e62 as debug
32+
FROM registry.access.redhat.com/ubi9/go-toolset@sha256:e0ad156b08e0b50ad509d79513e13e8a31f2812c66e9c48c98cea53420ec2bca 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.24.2@sha256:1ecc479bc712a6bdb56df3e346e33edcc141f469f82840bab9f4bc2bc41bf91d as deploy
39+
FROM golang:1.24.3@sha256:86b4cff66e04d41821a17cea30c1031ed53e2635e2be99ae0b4a7d69336b5063 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.fetch_tsa_certs.rh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23@sha256:44fd8f88f3b6463cda15571260f9ca3a0b78d3c8c8827a338e04ab3a23581a88 as build-env
1+
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23@sha256:4805e1cb2d1bd9d3c5de5d6986056bbda94ca7b01642f721d83d26579d333c60 as build-env
22
ENV APP_ROOT=/opt/app-root
33
ENV GOPATH=$APP_ROOT
44
WORKDIR $APP_ROOT/src/
@@ -19,7 +19,7 @@ RUN make -f Build.mak cross-platform && \
1919
gzip fetch_tsa_certs_linux_s390x && \
2020
gzip fetch_tsa_certs_windows_amd64.exe
2121

22-
FROM registry.access.redhat.com/ubi9-minimal@sha256:4c8830d349732ed8066544e1cbcf878ad64f39aa4364f13cf4a69954b0ccbda5
22+
FROM registry.access.redhat.com/ubi9-minimal@sha256:92b1d5747a93608b6adb64dfd54515c3c5a360802db4706765ff3d8470df6290
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 brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23@sha256:44fd8f88f3b6463cda15571260f9ca3a0b78d3c8c8827a338e04ab3a23581a88 as builder
15+
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23@sha256:4805e1cb2d1bd9d3c5de5d6986056bbda94ca7b01642f721d83d26579d333c60 as builder
1616
ENV APP_ROOT=/opt/app-root
1717
ENV GOPATH=$APP_ROOT
1818

@@ -27,14 +27,14 @@ RUN git config --global --add safe.directory /opt/app-root/src && \
2727
CGO_ENABLED=0 go build -mod=readonly -ldflags "${SERVER_LDFLAGS}" ./cmd/timestamp-server
2828

2929
# debug compile options & debugger
30-
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23@sha256:44fd8f88f3b6463cda15571260f9ca3a0b78d3c8c8827a338e04ab3a23581a88 as debug
30+
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_9_1.23@sha256:4805e1cb2d1bd9d3c5de5d6986056bbda94ca7b01642f721d83d26579d333c60 as debug
3131
RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.0
3232

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

3636
# Multi-Stage production build
37-
FROM registry.access.redhat.com/ubi9-minimal@sha256:4c8830d349732ed8066544e1cbcf878ad64f39aa4364f13cf4a69954b0ccbda5 as deploy
37+
FROM registry.access.redhat.com/ubi9-minimal@sha256:92b1d5747a93608b6adb64dfd54515c3c5a360802db4706765ff3d8470df6290 as deploy
3838

3939
LABEL description="The timestamp-authority is a process that provides a timestamp record of when a document was created or modified."
4040
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)