Files
openclaw-custom-image/Dockerfile

15 lines
238 B
Docker
Raw Normal View History

2026-07-11 18:31:12 +02:00
FROM ghcr.io/openclaw/openclaw:latest
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
bash \
ca-certificates \
curl \
git \
openssh-client \
&& rm -rf /var/lib/apt/lists/*
USER node