mirror of
https://github.com/4ier/notion-cli.git
synced 2026-09-14 20:17:00 +08:00
c435c10ac3
- Add goreleaser config (linux/darwin/windows × amd64/arm64) - Add GitHub Actions: release (goreleaser on tag) + test (3 OS × 3 Go versions + lint) - Add Dockerfile (Alpine-based) - Add Homebrew tap (4ier/homebrew-tap) and Scoop bucket (4ier/scoop-bucket) - Rewrite README: badges, 6 install methods, command table, feature showcase - Wire version via ldflags - Update SKILL.md with new commands and install methods - Add DISTRIBUTION.md plan
5 lines
112 B
Docker
5 lines
112 B
Docker
FROM alpine:3.21
|
|
RUN apk add --no-cache ca-certificates
|
|
COPY notion /usr/local/bin/notion
|
|
ENTRYPOINT ["notion"]
|