cli graph graphs
Some checks failed
cicd / ci (push) Failing after 51s

This commit is contained in:
Bel LaPointe
2025-05-07 15:34:31 -06:00
parent 2f8dba4e23
commit 58462fb5a4
403 changed files with 226724 additions and 4 deletions

10
vendor/github.com/guptarohit/asciigraph/Dockerfile generated vendored Normal file
View File

@@ -0,0 +1,10 @@
FROM golang:1.23-alpine AS builder
WORKDIR /app
COPY cmd ./cmd
COPY go.mod ./
COPY *.go ./
RUN GOOS=linux GOARCH=amd64 go build -ldflags="-w -s" -o /app/asciigraph ./cmd/asciigraph/main.go
FROM scratch
COPY --from=builder /app/asciigraph /asciigraph
ENTRYPOINT ["/asciigraph"]