This repository was archived by the owner on Nov 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +8
-12
lines changed
Expand file tree Collapse file tree 5 files changed +8
-12
lines changed Original file line number Diff line number Diff line change @@ -62,18 +62,18 @@ jobs:
6262 context : .
6363 file : dockerfiles/${{ matrix.key }}.Dockerfile
6464 load : true
65- tags : nikolaik /python-nodejs:${{ matrix.key }}
65+ tags : all-hands-ai /python-nodejs:${{ matrix.key }}
6666 - name : Run smoke tests
6767 run : |
68- docker run --rm nikolaik /python-nodejs:${{ matrix.key }} sh -c "node --version && npm --version && yarn --version && python --version && pip --version && pipenv --version && poetry --version && uv --version"
68+ docker run --rm 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"
6969 - name : Push image
7070 uses : docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6
7171 with :
7272 context : .
7373 file : dockerfiles/${{ matrix.key }}.Dockerfile
7474 platforms : ${{ join(matrix.platforms) }}
7575 push : true
76- tags : nikolaik /python-nodejs:${{ matrix.key }}
76+ tags : all-hands-ai /python-nodejs:${{ matrix.key }}
7777
7878 release :
7979 name : Update versions.json and README.md
Original file line number Diff line number Diff line change 11FROM python:trixie
2- LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <nikolaik@gmail.com>"
32
43RUN groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn
54ENV POETRY_HOME=/usr/local
Original file line number Diff line number Diff line change 11# 🐳 Python with Node.js
22
3- [ ![ Pulls] ( https://img.shields.io/docker/pulls/nikolaik/python-nodejs.svg?style=flat-square )] ( https://hub.docker.com/r/nikolaik/python-nodejs/ )
4- [ ![ CircleCI] ( https://img.shields.io/circleci/project/github/nikolaik/docker-python-nodejs.svg?style=flat-square )] ( https://circleci.com/gh/nikolaik/docker-python-nodejs )
3+ > This is a temporary fork of [ nikolaik/docker-python-nodejs] ( https://github.com/nikolaik/docker-python-nodejs ) to make the Debian Trixie upgrade available. Prefer the official nikolaik images if possible.
54
65Last updated by bot: 2025-09-11
76
@@ -117,17 +116,17 @@ Versions are kept up to date using official sources. For Python we scrape the _S
117116
118117``` bash
119118# Pull from Docker Hub
120- docker pull nikolaik /python-nodejs:latest
119+ docker pull all-hands-ai /python-nodejs:latest
121120# Build from GitHub
122- docker build -t nikolaik /python-nodejs github.com/nikolaik /docker-python-nodejs
121+ docker build -t all-hands-ai /python-nodejs github.com/All-Hands-AI /docker-python-nodejs
123122# Run image
124- docker run -it nikolaik /python-nodejs bash
123+ docker run -it all-hands-ai /python-nodejs bash
125124```
126125
127126### Use as base image
128127
129128``` Dockerfile
130- FROM nikolaik /python-nodejs:latest
129+ FROM all-hands-ai /python-nodejs:latest
131130
132131USER pn
133132WORKDIR /home/pn/app
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ RUN grep " node-v{{ nodejs_canonical }}-linux-x64-musl.tar.xz\$" SHASUMS256.txt
2222RUN tar -xf "node-v{{ nodejs_canonical }}-linux-x64-musl.tar.xz"
2323
2424FROM python:{{ python_image }}
25- LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <nikolaik@gmail.com>"
2625
2726RUN addgroup -g 1000 pn && adduser -u 1000 -G pn -s /bin/sh -D pn
2827RUN apk add libstdc++
Original file line number Diff line number Diff line change 22# python: {{ python_canonical }}
33# nodejs: {{ nodejs_canonical }}
44FROM python:{{ python_image }}
5- LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <nikolaik@gmail.com>"
65
76RUN groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn
87ENV POETRY_HOME=/usr/local
You can’t perform that action at this time.
0 commit comments