Skip to content
This repository was archived by the owner on Nov 4, 2025. It is now read-only.

Commit 897fad3

Browse files
authored
Remove some of the Nikolaik references
1 parent 6e65023 commit 897fad3

File tree

5 files changed

+8
-12
lines changed

5 files changed

+8
-12
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
FROM python:trixie
2-
LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <nikolaik@gmail.com>"
32

43
RUN groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn
54
ENV POETRY_HOME=/usr/local

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
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
65
Last 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

132131
USER pn
133132
WORKDIR /home/pn/app

templates/alpine.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ RUN grep " node-v{{ nodejs_canonical }}-linux-x64-musl.tar.xz\$" SHASUMS256.txt
2222
RUN tar -xf "node-v{{ nodejs_canonical }}-linux-x64-musl.tar.xz"
2323

2424
FROM python:{{ python_image }}
25-
LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <nikolaik@gmail.com>"
2625

2726
RUN addgroup -g 1000 pn && adduser -u 1000 -G pn -s /bin/sh -D pn
2827
RUN apk add libstdc++

templates/debian.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# python: {{ python_canonical }}
33
# nodejs: {{ nodejs_canonical }}
44
FROM python:{{ python_image }}
5-
LABEL org.opencontainers.image.authors="Nikolai R Kristiansen <nikolaik@gmail.com>"
65

76
RUN groupadd --gid 1000 pn && useradd --uid 1000 --gid pn --shell /bin/bash --create-home pn
87
ENV POETRY_HOME=/usr/local

0 commit comments

Comments
 (0)