CI: install nodejs before checkout; recovery followup via ITILFollowup
ci / vet (pull_request) Successful in 1m42s

golang:alpine lacks node (actions/checkout 127). GLPI 11 rejects the
legacy /followup input shape -> item-endpoint first, legacy fallback;
solve no longer skipped when followup fails.
Ticket: https://projects.knownelement.com/issues/824
This commit is contained in:
2026-09-06 13:00:55 -05:00
parent 16519fd97f
commit bfd05f0064
4 changed files with 22 additions and 9 deletions
+2 -1
View File
@@ -3,7 +3,8 @@ WORKDIR /src
COPY go.mod ./
COPY cmd/ ./cmd/
RUN go build -ldflags="-s -w" -o /out/bridge ./cmd/bridge
FROM scratch
FROM alpine:3.20
RUN apk add --no-cache ca-certificates && adduser -D -u 65532 app
COPY --from=build /out/bridge /bridge
USER 65532:65532
EXPOSE 8080