Created
March 30, 2026 15:26
-
-
Save iworkforthem/713847b2230b3493c821220354cb3336 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:latest | |
| RUN apk add --no-cache ca-certificates curl tar | |
| WORKDIR /app | |
| # Download the correct arm64 tar.gz, extract, and set permissions | |
| RUN curl -L -o picoclaw.tar.gz \ | |
| https://github.com/sipeed/picoclaw/releases/latest/download/picoclaw_Linux_arm64.tar.gz && \ | |
| tar -xzf picoclaw.tar.gz && \ | |
| rm picoclaw.tar.gz && \ | |
| chmod +x picoclaw && \ | |
| ls -la # for debugging | |
| EXPOSE 18800 | |
| CMD ["./picoclaw"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment