chore(deps): update golang docker tag to v1.26 (#4)
Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
R
Rüdiger Küpper
<rpr@9it.de>
committete am 19.02.2026 11:06
7cd80659de58e10ecda7bcec9b166bddb76e16d6
| @@ -1,11 +1,11 @@ | ||
| 1 | -FROM --platform=$TARGETPLATFORM golang:1.25-alpine AS quilldrop |
|
| 1 | +FROM --platform=$TARGETPLATFORM golang:1.26-alpine AS quilldrop |
|
| 2 | 2 | WORKDIR /build |
| 3 | 3 | COPY go.mod go.sum ./ |
| 4 | 4 | RUN go mod download |
| 5 | 5 | COPY --exclude=static/images . . |
| 6 | 6 | RUN CGO_ENABLED=0 go build -o quilldrop |
| 7 | 7 | |
| 8 | 8 | FROM --platform=$TARGETPLATFORM nginx AS builder |
| 9 | 9 | WORKDIR /app |
| 10 | 10 | COPY --from=quilldrop /build/quilldrop ./quilldrop |
| 11 | 11 | COPY --exclude=static/images . . |