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
