Fix
release-tag / release-image (push) Successful in 1m33s

This commit is contained in:
2026-07-29 08:00:27 +02:00
parent 6b38642ba1
commit 03108d4ff9
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
FROM golang:1.23-alpine AS build
FROM golang:1.26-alpine AS build
WORKDIR /src
COPY go.mod ./
COPY cmd ./cmd
@@ -7,7 +7,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -ldflags="-s -w" -o /out/glpi-ai
# One-shot helper used by docker compose to prepare the persistent volume for
# the distroless non-root runtime user (UID/GID 65532).
FROM golang:1.23-alpine AS data-init
FROM golang:1.26-alpine AS data-init
ENTRYPOINT ["sh", "-c", "mkdir -p /app/data && chown -R 65532:65532 /app/data && chmod 0750 /app/data"]
FROM gcr.io/distroless/static-debian12:nonroot
+1 -1
View File
@@ -1,3 +1,3 @@
module github.com/example/glpi-ai-agent
go 1.23
go 1.26