* Add git install support to install-cli Trim install-cli help text * Clarify git install source messages * fix: guard git install directory * fix: note git install support (#17) (thanks @travisp) * Update the smoke script * fix: harden install-cli git mode + smoke coverage (#41) (thanks @travisp) --------- Co-authored-by: Shadow <hi@shadowing.dev> Co-authored-by: Peter Steinberger <steipete@gmail.com>
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/openclaw-install-cli-git-smoke
|
|
COPY public/install-cli.sh /opt/openclaw-install-cli.sh
|
|
RUN chmod +x /usr/local/bin/openclaw-install-cli-git-smoke \
|
|
&& chmod a+r /opt/openclaw-install-cli.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/openclaw-install-cli-git-smoke"]
|