Hermes Agent commited on
Commit
cd85ca3
·
1 Parent(s): 4fc829b

Fix: use golang:1.26 for Go 1.26.0 requirement

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -14,7 +14,7 @@ WORKDIR /app/webui
14
  RUN npm ci && npm run build
15
 
16
  # Stage 3: Build Go binary
17
- FROM golang:1.24-alpine AS go-builder
18
  RUN apk add --no-cache git
19
  COPY --from=source /src /app
20
  WORKDIR /app
 
14
  RUN npm ci && npm run build
15
 
16
  # Stage 3: Build Go binary
17
+ FROM golang:1.26-alpine AS go-builder
18
  RUN apk add --no-cache git
19
  COPY --from=source /src /app
20
  WORKDIR /app