File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,20 +55,20 @@ RUN dnf in -y bc \
55
55
zstd
56
56
57
57
58
- FROM golang:1.24 AS with-swagger
58
+ FROM golang:1.25 AS with-swagger
59
59
WORKDIR /app
60
60
RUN go install github.com/swaggo/swag/cmd/swag@latest
61
61
COPY . .
62
62
RUN swag init -g main.go --output internal/web/app --parseDependency --parseInternal --parseDepth 1 --parseVendor
63
63
64
- FROM golang:1.24 AS without-swagger
64
+ FROM golang:1.25 AS without-swagger
65
65
WORKDIR /app
66
66
RUN mkdir -p internal/web/app
67
67
RUN touch internal/web/app/swagger.json internal/web/app/redoc.html
68
68
69
69
FROM ${SWAGGER_STAGE} AS swagger
70
70
71
- FROM golang:1.24 AS builder
71
+ FROM golang:1.25 AS builder
72
72
ARG VERSION=v0.0.0
73
73
WORKDIR /work
74
74
COPY --from=js /app/bundle.js ./internal/web/app/bundle.js
You can’t perform that action at this time.
0 commit comments