From d8d6a20ee12a07b11ee97d800d8e907bfae4dd2e Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 20:21:09 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.25.7 --- Dockerfile | 2 +- synkronus/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 063ffafa4..f504ca710 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.25.7-alpine AS synkronus-builder # Install build dependencies RUN apk add --no-cache git diff --git a/synkronus/Dockerfile b/synkronus/Dockerfile index 94449ca90..826267626 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.25.7-alpine AS builder # Install build dependencies (no C toolchain needed for pure Go build) RUN apk add --no-cache git