diff --git a/charts/openclaw/2026.02.1/image/Dockerfile b/charts/openclaw/2026.02.1/image/Dockerfile new file mode 100644 index 0000000..b25e5ba --- /dev/null +++ b/charts/openclaw/2026.02.1/image/Dockerfile @@ -0,0 +1,15 @@ +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 diff --git a/charts/openclaw/2026.02.1/image/VERSION b/charts/openclaw/2026.02.1/image/VERSION new file mode 100644 index 0000000..00750ed --- /dev/null +++ b/charts/openclaw/2026.02.1/image/VERSION @@ -0,0 +1 @@ +3 diff --git a/charts/openclaw/2026.02.1/image/build.sh b/charts/openclaw/2026.02.1/image/build.sh new file mode 100755 index 0000000..36c6502 --- /dev/null +++ b/charts/openclaw/2026.02.1/image/build.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash -e + +VERSION_FILE=VERSION +current=$(cat $VERSION_FILE) +tag=$((current + 1)) +docker buildx build --platform linux/amd64,linux/arm64 -t docker.bassengvegen.com/openclaw:${tag} . +docker push docker.bassengvegen.com/openclaw:${tag} +echo $tag > $VERSION_FILE