diff --git a/Dockerfile b/Dockerfile index a7f0ae039..ee39b8230 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ WORKDIR /app/synkronus-portal RUN npm run build # Stage 2: Build the Go application (Synkronus) with embedded portal -FROM golang:1.24.2-alpine AS synkronus-builder +FROM golang:1.26.0-alpine AS synkronus-builder RUN apk add --no-cache git diff --git a/synkronus/Dockerfile b/synkronus/Dockerfile index 94449ca90..d63e779de 100644 --- a/synkronus/Dockerfile +++ b/synkronus/Dockerfile @@ -1,7 +1,7 @@ # Multi-stage build for Synkronus # Stage 1: Build the Go application # Pure Go build (PostgreSQL only, SQLite/CGO disabled by default) -FROM golang:1.25.6-alpine AS builder +FROM golang:1.26.0-alpine AS builder # Install build dependencies (no C toolchain needed for pure Go build) RUN apk add --no-cache git