From 6104a99a01a2947873da941808d78962c44a03e6 Mon Sep 17 00:00:00 2001 From: trojvn Date: Tue, 10 Mar 2026 04:00:12 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20chore:=20update=20golang=20versi?= =?UTF-8?q?on=20to=201.25=20in=20dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit update the golang version from 1.23 to 1.25 in the dockerfile to leverage the latest features and security patches --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c328e4c..f925a1a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # --- ЭТАП 1: Сборка --- -FROM golang:1.23-alpine AS builder +FROM golang:1.25-alpine AS builder # Устанавливаем рабочую директорию WORKDIR /app