mirror of
https://github.com/openclaw/openclaw.ai.git
synced 2026-08-25 12:39:35 -04:00
e5a016cdca
Trim install-cli help text
20 lines
540 B
Docker
20 lines
540 B
Docker
FROM node:25-bookworm-slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y --no-install-recommends \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
python3 \
|
|
make \
|
|
g++ \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY scripts/docker/install-cli-git-smoke/run.sh /usr/local/bin/clawdbot-install-cli-git-smoke
|
|
COPY public/install-cli.sh /opt/clawdbot-install-cli.sh
|
|
RUN chmod +x /usr/local/bin/clawdbot-install-cli-git-smoke \
|
|
&& chmod a+r /opt/clawdbot-install-cli.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/clawdbot-install-cli-git-smoke"]
|