mirror of
https://github.com/moltbot/moltbot.git
synced 2026-03-08 06:54:24 +00:00
18 lines
474 B
Docker
18 lines
474 B
Docker
FROM node:22-bookworm-slim@sha256:3cfe526ec8dd62013b8843e8e5d4877e297b886e5aace4a59fec25dc20736e45
|
|
|
|
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/openclaw-install-e2e
|
|
RUN chmod +x /usr/local/bin/openclaw-install-e2e
|
|
|
|
RUN useradd --create-home --shell /bin/bash appuser
|
|
USER appuser
|
|
|
|
ENTRYPOINT ["/usr/local/bin/openclaw-install-e2e"]
|