Patch container CVEs: Next 14.2.35, Go 1.25 + pgx 5.10, alpine 3.22, npm stripped

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-22 22:10:38 -07:00
parent 4974780d89
commit ccacbe80c9
6 changed files with 371 additions and 228 deletions

View File

@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.24-alpine AS builder
FROM golang:1.25-alpine AS builder
WORKDIR /app
@@ -17,7 +17,7 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-w -s" -o /api ./cmd/api
# Final stage
FROM alpine:3.19
FROM alpine:3.22
WORKDIR /app