FROM ghcr.io/openclaw/openclaw:latest
USER root
RUN apt-get update && apt-get install -y --no-install-recommends \
    python3-pip \
    jq \
    gh \
    && rm -rf /var/lib/apt/lists/*

RUN pip install --no-cache-dir --break-system-packages \
    google-auth \
    google-auth-oauthlib \
    google-api-python-client \
    uv

USER node
