From a489c31a33d9170bc10143bd944b650c92e8ef7a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 22 Feb 2026 21:18:15 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.26.0 --- Dockerfile | 2 +- synkronus/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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