picoclaw/Dockerfile.goreleaser
ZanzyTHEbar db4d98a1d4 chore!: rename module from github.com/sipeed/picoclaw to github.com/ZanzyTHEbar/dragonscale
Update Go module path and all import references across the codebase.
Rename cmd/picoclaw/ → cmd/dragonscale/, pkg/pcerrors/ → pkg/dserrors/.
Update all environment variable prefixes PICOCLAW_* → DRAGONSCALE_*.
Remove stale translated READMEs (ja, pt-br, zh) and legacy community
roadmap doc. Update CI workflows, Dockerfile, goreleaser, and Makefile
to reference the new binary name and module path.

BREAKING CHANGE: module path changed; all consumers must update imports
2026-02-21 18:56:35 +00:00

10 lines
189 B
Text

FROM alpine:3.21
ARG TARGETPLATFORM
RUN apk add --no-cache ca-certificates tzdata
COPY $TARGETPLATFORM/dragonscale /usr/local/bin/dragonscale
ENTRYPOINT ["dragonscale"]
CMD ["gateway"]