- 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>
12 lines
368 B
Text
12 lines
368 B
Text
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"]
|