From 1b4ff66e006183593dbf134c345cfb75932e8811 Mon Sep 17 00:00:00 2001 From: Arjun Komath Date: Fri, 29 May 2026 00:21:30 +1000 Subject: [PATCH] Update OpenClaw, add tini --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ebeaad9..47a495b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,13 @@ RUN apt-get update \ gosu \ procps \ python3 \ + tini \ build-essential \ zip \ unzip \ && rm -rf /var/lib/apt/lists/* -RUN npm install -g openclaw@2026.5.18 +RUN npm install -g openclaw@2026.5.27 RUN npm install -g clawhub@latest WORKDIR /app @@ -45,4 +46,4 @@ HEALTHCHECK --interval=30s --timeout=5s --start-period=10s \ CMD curl -f http://localhost:8080/setup/healthz || exit 1 USER root -ENTRYPOINT ["./entrypoint.sh"] +ENTRYPOINT ["tini", "--", "./entrypoint.sh"]