File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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:39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc AS builder
1616ENV APP_ROOT=/opt/app-root
1717ENV GOPATH=$APP_ROOT
1818
@@ -29,14 +29,14 @@ RUN go build -ldflags "${SERVER_LDFLAGS}" ./cmd/timestamp-server
2929RUN 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:f80d3112ca9d40f0df82c769a14222c1183beb6808544f213ee93b986ac9e4af as debug
3333RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.0
3434
3535# overwrite server and include debugger
3636COPY --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:39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc as deploy
4040
4141# Retrieve the binary from the previous stage
4242COPY --from=builder /opt/app-root/src/timestamp-server /usr/local/bin/timestamp-server
Original file line number Diff line number Diff line change @@ -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:e7da3c032ae52bd26e597cc616eed644710e32e5d3bc9212c7edde8ab7799b0e
2323ENV APP_ROOT=/opt/app-root
2424WORKDIR $APP_ROOT/src/
2525
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ RUN go install github.com/go-delve/delve/cmd/dlv@v1.9.0
3434COPY --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:e7da3c032ae52bd26e597cc616eed644710e32e5d3bc9212c7edde8ab7799b0e as deploy
3838
3939LABEL description="The timestamp-authority is a process that provides a timestamp record of when a document was created or modified."
4040LABEL io.k8s.description="The timestamp-authority is a process that provides a timestamp record of when a document was created or modified."
You can’t perform that action at this time.
0 commit comments