Skip to content
Open
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
3 changes: 1 addition & 2 deletions .github/workflows/buildx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
ruby-version: ["3.2", "3.3", "3.4", "4.0"]
node-version: [20, 22, 24]
node-version: [22, 24]
variant: [default, slim, alpine]
include:
- variant: default
Expand All @@ -32,7 +32,6 @@ jobs:
id: nodename
run: |
case "${{ matrix.node-version }}" in
"20") echo "codename=iron" >> $GITHUB_OUTPUT ;;
"22") echo "codename=jod" >> $GITHUB_OUTPUT ;;
"24") echo "codename=krypton" >> $GITHUB_OUTPUT ;;
"26") echo "codename=lithium" >> $GITHUB_OUTPUT ;;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dockerimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
ruby-version: ["3.2", "3.3", "3.4", "4.0"]
node-version: [20, 22, 24]
node-version: [22, 24]
variant: [default, slim, alpine]

steps:
Expand Down
19 changes: 0 additions & 19 deletions 3.2/20/Dockerfile

This file was deleted.

14 changes: 0 additions & 14 deletions 3.2/20/alpine/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions 3.2/20/slim/Dockerfile

This file was deleted.

19 changes: 0 additions & 19 deletions 3.3/20/Dockerfile

This file was deleted.

14 changes: 0 additions & 14 deletions 3.3/20/alpine/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions 3.3/20/slim/Dockerfile

This file was deleted.

19 changes: 0 additions & 19 deletions 3.4/20/Dockerfile

This file was deleted.

14 changes: 0 additions & 14 deletions 3.4/20/alpine/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions 3.4/20/slim/Dockerfile

This file was deleted.

19 changes: 0 additions & 19 deletions 4.0/20/Dockerfile

This file was deleted.

14 changes: 0 additions & 14 deletions 4.0/20/alpine/Dockerfile

This file was deleted.

25 changes: 0 additions & 25 deletions 4.0/20/slim/Dockerfile

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Ruby 3.2, 3.3, 3.4, 4.0 with Node.js 20 LTS, Node.js 22 LTS or Node.js 24 LTS Dockerfile
# Ruby 3.2, 3.3, 3.4, 4.0 with Node.js 22 LTS or Node.js 24 LTS Dockerfile

[![Docker Automated build](https://img.shields.io/docker/automated/timbru31/ruby-node.svg)](https://hub.docker.com/r/timbru31/ruby-node/)
[![buildx Status](https://github.com/timbru31/docker-ruby-node/workflows/buildx/badge.svg)](https://github.com/timbru31/docker-ruby-node/actions?query=workflow%3Abuildx)
[![Lint Dockerfiles](https://github.com/timbru31/docker-ruby-node/workflows/Lint%20Dockerfiles/badge.svg)](https://github.com/timbru31/docker-ruby-node/actions?query=workflow%3A%22Lint+Dockerfiles%22)

A minimal Dockerfile based on Ruby (3.2, 3.3, 3.4 or 4.0) Dockerfile (regular, slim or alpine) with Node.js 20 LTS (Iron), Node.js 22 LTS (Jod) or Node.js 24 LTS (Krypton) installed.
A minimal Dockerfile based on Ruby (3.2, 3.3, 3.4 or 4.0) Dockerfile (regular, slim or alpine) with Node.js 22 LTS (Jod) or Node.js 24 LTS (Krypton) installed.

## What's included

- Ruby 3.2, 3.3, 3.4, 4.0
- Node.js 20 LTS (Iron), Node.js 22 LTS (Jod) or Node.js 24 LTS (Krypton)
- Node.js 22 LTS (Jod) or Node.js 24 LTS (Krypton)
- bundled npm that comes with the respective Node.js version (latest for Node.js LTS on alpine, see [why](https://gitlab.alpinelinux.org/alpine/aports/-/commit/25b10bd1a93e12a7e49fee38b0a229281ae49fb7))
- yarn

Expand Down
Loading