v3.1.0 (Fix custom gradient colors)

This commit is contained in:
selfhst-bot
2026-01-28 06:13:45 -05:00
parent 0dbdf429fd
commit d93d2dad70
3 changed files with 15 additions and 4 deletions

18
build/Dockerfile Executable file
View File

@@ -0,0 +1,18 @@
FROM golang:1.25-alpine AS builder
WORKDIR /app
COPY go.mod main.go ./
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
EXPOSE 4050
ENTRYPOINT ["/server"]