···11# Production build for ATCR AppView
22# Result: ~30MB scratch image with static binary
33-FROM docker.io/golang:1.25.4-trixie AS builder
33+FROM docker.io/golang:1.25.7-trixie AS builder
4455ENV DEBIAN_FRONTEND=noninteractive
66
+1-1
Dockerfile.dev
···11# Development image with Air hot reload
22# Build: docker build -f Dockerfile.dev -t atcr-dev .
33# Run: docker run -v $(pwd):/app -p 5000:5000 atcr-dev
44-FROM docker.io/golang:1.25.4-trixie
44+FROM docker.io/golang:1.25.7-trixie
5566ARG AIR_CONFIG=.air.toml
77
+1-1
Dockerfile.hold
···11-FROM docker.io/golang:1.25.4-trixie AS builder
11+FROM docker.io/golang:1.25.7-trixie AS builder
2233# Build argument to enable Stripe billing integration
44# Usage: docker build --build-arg BILLING_ENABLED=true -f Dockerfile.hold .
+1-1
Dockerfile.scanner
···11-FROM docker.io/golang:1.25.4-trixie AS builder
11+FROM docker.io/golang:1.25.7-trixie AS builder
2233ENV DEBIAN_FRONTEND=noninteractive
44
···99)
10101111// requiredGoVersion reads the Go version from the root go.mod file.
1212-// Returns a version string like "1.25.4" for use in download URLs.
1212+// Returns a version string like "1.25.7" for use in download URLs.
1313func requiredGoVersion() (string, error) {
1414 _, thisFile, _, _ := runtime.Caller(0)
1515 rootMod := filepath.Join(filepath.Dir(thisFile), "..", "..", "go.mod")