-
-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathgoreleaser.dockerfile
More file actions
16 lines (16 loc) · 722 Bytes
/
goreleaser.dockerfile
File metadata and controls
16 lines (16 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM scratch
ARG TARGETPLATFORM
ARG VERSION
ARG COMMIT
ARG DATE
COPY $TARGETPLATFORM/asciigraph /asciigraph
LABEL org.opencontainers.image.title="asciigraph" \
org.opencontainers.image.name="asciigraph" \
org.opencontainers.image.description="Go package to make lightweight line graphs ╭┈╯ in CLI" \
org.opencontainers.image.url="https://github.com/guptarohit/asciigraph" \
org.opencontainers.image.source="https://github.com/guptarohit/asciigraph" \
org.opencontainers.image.version="${VERSION}" \
org.opencontainers.image.created="${DATE}" \
org.opencontainers.image.revision="${COMMIT}" \
org.opencontainers.image.licenses="BSD-3-Clause"
ENTRYPOINT ["/asciigraph"]