fix(docker): use Go 1.25 to match modernc.org/sqlite v1.47 requirement
This commit is contained in:
parent
b97769e8ee
commit
a2e00d39d4
2 changed files with 5 additions and 3 deletions
|
|
@ -2,7 +2,7 @@
|
|||
# Multi-stage build for minimal production image
|
||||
|
||||
# Stage 1: Build the Go binary
|
||||
FROM golang:1.23-bookworm AS builder
|
||||
FROM golang:1.25-bookworm AS builder
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,8 @@ require (
|
|||
github.com/google/uuid v1.6.0
|
||||
github.com/gorilla/websocket v1.5.3
|
||||
github.com/hashicorp/mdns v1.0.5
|
||||
github.com/mattn/go-sqlite3 v1.14.37
|
||||
gonum.org/v1/gonum v0.17.0
|
||||
modernc.org/sqlite v1.47.0
|
||||
)
|
||||
|
||||
|
|
@ -17,9 +19,9 @@ require (
|
|||
github.com/miekg/dns v1.1.41 // indirect
|
||||
github.com/ncruces/go-strftime v1.0.0 // indirect
|
||||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
||||
golang.org/x/net v0.0.0-20210410081132-afb366fc7cd1 // indirect
|
||||
golang.org/x/net v0.27.0 // indirect
|
||||
golang.org/x/sync v0.19.0 // indirect
|
||||
golang.org/x/sys v0.42.0 // indirect
|
||||
gonum.org/v1/gonum v0.17.0 // indirect
|
||||
modernc.org/libc v1.70.0 // indirect
|
||||
modernc.org/mathutil v1.7.1 // indirect
|
||||
modernc.org/memory v1.11.0 // indirect
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue