A vibe coded tangled fork which supports pijul.
at ffe36ca74a2fee81a085d24b6d20a606a2ae77bf 22 lines 304 B view raw
1FROM golang:1.22-alpine AS builder 2 3WORKDIR /app 4 5COPY . . 6RUN go mod download 7RUN go mod verify 8 9RUN go build -o legit 10 11FROM scratch AS build-release-stage 12 13WORKDIR /app 14 15COPY static ./static 16COPY templates ./templates 17COPY config.yaml ./ 18COPY --from=builder /app/legit ./ 19 20EXPOSE 5555 21 22CMD ["./legit"]