Files
clawdbot/scripts/docker/install-sh-e2e/Dockerfile
2026-01-11 10:20:50 +00:00

15 lines
336 B
Docker

FROM node:22-bookworm-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
COPY run.sh /usr/local/bin/clawdbot-install-e2e
RUN chmod +x /usr/local/bin/clawdbot-install-e2e
ENTRYPOINT ["/usr/local/bin/clawdbot-install-e2e"]