Upgrade go version in dockerfile

This commit is contained in:
2026-03-08 19:12:09 +01:00
parent 17068aa28c
commit 3064235a80

View File

@@ -3,7 +3,7 @@ FROM node:lts AS buildfront
COPY front .
RUN npm install && npm run build
FROM golang:1.25 AS build
FROM golang:1.26 AS build
WORKDIR /src
COPY . .
COPY --from=buildfront ./dist front/dist