mirror of
https://github.com/sipeed/picoclaw.git
synced 2026-06-12 18:08:54 +00:00
9ec27835cf
- Add -console to Dockerfile CMD so launcher outputs logs to stdout, making docker logs work as expected - Remove 127.0.0.1 bind from ports to allow public network access - Add commented PICOCLAW_LAUNCHER_TOKEN env var example Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
368 B
Docker
13 lines
368 B
Docker
FROM alpine:3.21
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN apk add --no-cache ca-certificates tzdata
|
|
|
|
COPY $TARGETPLATFORM/picoclaw /usr/local/bin/picoclaw
|
|
COPY $TARGETPLATFORM/picoclaw-launcher /usr/local/bin/picoclaw-launcher
|
|
COPY $TARGETPLATFORM/picoclaw-launcher-tui /usr/local/bin/picoclaw-launcher-tui
|
|
|
|
ENTRYPOINT ["picoclaw-launcher"]
|
|
CMD ["-console", "-public", "-no-browser"]
|