Files
openclaw/scripts/docker/install-sh-e2e/Dockerfile

15 lines
408 B
Docker
Raw Normal View History

FROM node:22-bookworm-slim@sha256:3cfe526ec8dd62013b8843e8e5d4877e297b886e5aace4a59fec25dc20736e45
2026-01-11 10:20:50 +00:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
curl \
git \
&& rm -rf /var/lib/apt/lists/*
2026-01-30 03:15:10 +01:00
COPY run.sh /usr/local/bin/openclaw-install-e2e
RUN chmod +x /usr/local/bin/openclaw-install-e2e
2026-01-11 10:20:50 +00:00
2026-01-30 03:15:10 +01:00
ENTRYPOINT ["/usr/local/bin/openclaw-install-e2e"]