Update version to 3.0.0 (New icon formats, dropped legacy URL)

This commit is contained in:
2026-01-03 19:47:16 +05:30
parent 21579429f9
commit a5a48e0aaf
5 changed files with 25 additions and 89 deletions

View File

@@ -1,17 +1,14 @@
FROM golang:1.21-alpine AS builder
FROM golang:1.25-alpine AS builder
WORKDIR /app
COPY go.mod main.go ./
RUN go mod tidy && \
go mod download && \
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o server .
RUN CGO_ENABLED=0 go build -o server .
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /app/server /server
USER 65534:65534