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
10 lines
189 B
Text
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"]
|