From b85466e9821a33c105e39dbb476b39671ab4654d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 10 Feb 2026 22:35:48 +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 063ffafa4..fdfc34106 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Multi-stage build for combined Synkronus + Portal # Stage 1: Build the Go application (Synkronus) -FROM golang:1.24.2-alpine AS synkronus-builder +FROM golang:1.26.0-alpine AS synkronus-builder # Install build dependencies 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