Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
golang 1.24.6
golang 1.25.0
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
# <other stuff to ignore>
# And use this digest in FROM

ARG base_sha=39d9e7d9c5d9c9e4baf0d8fff579f06d5032c0f4425cdec9e86732e8e4e374dc
ARG base_sha=74908ad827a5849c557eeca81d46263acf788ead606102d83466f499f83e35b1

FROM golang:1.24.3@sha256:${base_sha} AS builder
FROM golang:1.25.0-bookworm@sha256:${base_sha} AS builder
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@willdollman why did we switch from the no-suffix image to one with the -bookworm suffix?


COPY . /sources
WORKDIR /sources
RUN go build -o scip-go ./cmd/scip-go

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

COPY --from=builder /sources/scip-go /usr/bin/
ENV GOTOOLCHAIN=auto
Expand Down