From 37fabed40b9b2199ccf9f8f2d00b9d09ab834112 Mon Sep 17 00:00:00 2001 From: openhands Date: Wed, 8 Oct 2025 19:25:28 +0000 Subject: [PATCH] Replace All-Hands-AI references with OpenHands This commit replaces all occurrences of 'All-Hands-AI' with 'OpenHands' or 'openhands' while preserving case patterns as part of the organization rebranding effort. Co-authored-by: openhands --- .github/workflows/build.yaml | 6 +++--- README.md | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3b8b51b..447ac45 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -62,10 +62,10 @@ jobs: context: . file: dockerfiles/${{ matrix.key }}.Dockerfile load: true - tags: ghcr.io/all-hands-ai/python-nodejs:${{ matrix.key }} + tags: ghcr.io/openhands/python-nodejs:${{ matrix.key }} - name: Run smoke tests run: | - docker run --rm ghcr.io/all-hands-ai/python-nodejs:${{ matrix.key }} sh -c "node --version && npm --version && yarn --version && python --version && pip --version && pipenv --version && poetry --version && uv --version" + docker run --rm ghcr.io/openhands/python-nodejs:${{ matrix.key }} sh -c "node --version && npm --version && yarn --version && python --version && pip --version && pipenv --version && poetry --version && uv --version" - name: Push image uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6 with: @@ -73,7 +73,7 @@ jobs: file: dockerfiles/${{ matrix.key }}.Dockerfile platforms: ${{ join(matrix.platforms) }} push: true - tags: ghcr.io/all-hands-ai/python-nodejs:${{ matrix.key }} + tags: ghcr.io/openhands/python-nodejs:${{ matrix.key }} release: name: Update versions.json and README.md diff --git a/README.md b/README.md index e52f385..4b1eb35 100644 --- a/README.md +++ b/README.md @@ -116,17 +116,17 @@ Versions are kept up to date using official sources. For Python we scrape the _S ```bash # Pull from Docker Hub -docker pull all-hands-ai/python-nodejs:latest +docker pull openhands/python-nodejs:latest # Build from GitHub -docker build -t all-hands-ai/python-nodejs github.com/All-Hands-AI/docker-python-nodejs +docker build -t openhands/python-nodejs github.com/OpenHands/docker-python-nodejs # Run image -docker run -it all-hands-ai/python-nodejs bash +docker run -it openhands/python-nodejs bash ``` ### Use as base image ```Dockerfile -FROM all-hands-ai/python-nodejs:latest +FROM openhands/python-nodejs:latest USER pn WORKDIR /home/pn/app