From ad046219af293efed15d25d25104b1b51884e93a Mon Sep 17 00:00:00 2001 From: enzo Date: Fri, 20 Mar 2026 21:55:04 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20golang=201.23=20=E2=86=92=201.26=20dans?= =?UTF-8?q?=20le=20Dockerfile=20backend?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index c8d49fe..a6f5e2b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,5 @@ # ── Étape 1 : Build du binaire Go ────────────────────────────────────────── -FROM golang:1.23-alpine AS builder +FROM golang:1.26-alpine AS builder # Dépendances de compilation (git pour les modules Go) RUN apk add --no-cache git