diff --git a/Dockerfile b/Dockerfile index d3f044f..98282fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/mothership/go.mod b/mothership/go.mod index 0a1057b..a48d915 100644 --- a/mothership/go.mod +++ b/mothership/go.mod @@ -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