Skip to content

Commit ff2119d

Browse files
committed
Adding NodeJS 24
1 parent 5efe007 commit ff2119d

12 files changed

Lines changed: 28 additions & 6 deletions

File tree

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node: [ "16", "17", "18", "19", "20", "21", "22", "23" ]
17+
node: [ "16", "17", "18", "19", "20", "21", "22", "23", "24" ]
1818
runs-on: ubuntu-latest
1919
steps:
2020
-

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
node: [ "16", "17", "18", "19", "20", "21", "22", "23" ]
13+
node: [ "16", "17", "18", "19", "20", "21", "22", "23", "24" ]
1414
runs-on: ubuntu-latest
1515
steps:
1616
-
@@ -92,7 +92,7 @@ jobs:
9292
-
9393
name: Build and push default
9494
id: docker_build_default
95-
if: matrix.node == '22'
95+
if: matrix.node == '24'
9696
uses: docker/build-push-action@v6
9797
with:
9898
context: .

24/ALPINE_MINOR

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.23

24/Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
FROM quay.io/bfren/alpine-s6:alpine3.22-6.0.1
2+
3+
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-node"
4+
5+
ARG BF_IMAGE
6+
ARG BF_PUBLISHING
7+
ARG BF_VERSION
8+
9+
EXPOSE 3000
10+
11+
COPY ./overlay /
12+
COPY ./23/overlay /
13+
14+
RUN bf-install
15+
16+
VOLUME [ "/app/live" ]

24/PKG.url

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://pkgs.alpinelinux.org/packages?name=nodejs-current&branch=v3.22&repo=&arch=&maintainer=

24/overlay/tmp/NODE_BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24.11.1-r0

24/overlay/tmp/NODE_MINOR

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
24.11.1

24/overlay/tmp/NODE_PKG

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs

24/overlay/tmp/NPM_BUILD

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
11.6.3-r0

generate-dockerfiles.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ docker pull bfren/alpine
77
BASE_VERSION="6.0.1"
88
echo "Base: ${BASE_VERSION}"
99

10-
NODE_VERSIONS="16 17 18 19 20 21 22 23"
10+
NODE_VERSIONS="16 17 18 19 20 21 22 23 24"
1111
for V in ${NODE_VERSIONS} ; do
1212

1313
echo "Node.js ${V}"

0 commit comments

Comments
 (0)