Skip to content

Commit afe6aec

Browse files
Update to latest golang image and go release (#161)
Co-authored-by: Anton Sviridov <[email protected]>
1 parent ba0cf49 commit afe6aec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
golang 1.24.6
1+
golang 1.25.0

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
# <other stuff to ignore>
1616
# And use this digest in FROM
1717

18-
ARG base_sha=39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc
18+
ARG base_sha=74908ad827a5849c557eeca81d46263acf788ead606102d83466f499f83e35b1
1919

20-
FROM golang:1.24.3@sha256:${base_sha} AS builder
20+
FROM golang:1.25.0-bookworm@sha256:${base_sha} AS builder
2121

2222
COPY . /sources
2323
WORKDIR /sources
2424
RUN go build -o scip-go ./cmd/scip-go
2525

2626
# Keep in sync with builder image
27-
FROM golang:1.24.3@sha256:${base_sha} AS final
27+
FROM golang:1.25.0-bookworm@sha256:${base_sha} AS final
2828

2929
COPY --from=builder /sources/scip-go /usr/bin/
3030
ENV GOTOOLCHAIN=auto

0 commit comments

Comments
 (0)