Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Container image that runs your code
FROM golang:1.23.8-alpine as builder
FROM golang:1.26.1-alpine as builder

RUN go install github.com/google/go-jsonnet/cmd/jsonnetfmt@latest
RUN go install github.com/google/go-jsonnet/cmd/jsonnetfmt@v0.22.0

FROM golang:1.23.8-alpine as runner
FROM golang:1.26.1-alpine as runner

COPY --from=builder /go/bin/jsonnetfmt /bin/jsonnetfmt

Expand Down