2026-02-19 12:42:07 -08:00
|
|
|
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-03-08 19:10:48 +03:00
|
|
|
COPY install-sh-common/version-parse.sh /usr/local/install-sh-common/version-parse.sh
|
2026-03-08 16:07:04 -07:00
|
|
|
COPY --chmod=755 run.sh /usr/local/bin/openclaw-install-e2e
|
2026-01-11 10:20:50 +00:00
|
|
|
|
2026-02-20 12:45:34 -06:00
|
|
|
RUN useradd --create-home --shell /bin/bash appuser
|
|
|
|
|
USER appuser
|
|
|
|
|
|
2026-01-30 03:15:10 +01:00
|
|
|
ENTRYPOINT ["/usr/local/bin/openclaw-install-e2e"]
|