Skip to content
This repository was archived by the owner on Nov 4, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,18 @@ 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:
context: .
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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down