Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
base-image-tag: [20-bookworm, 22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie]
base-image-tag: [22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie]
steps:
- uses: actions/checkout@master
- name: Determine Java version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
base-image-tag: [20-bookworm, 22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie]
base-image-tag: [22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie]
steps:
- uses: actions/checkout@v3
- name: Determine Java version
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ The default tag `latest` contains Node 26.
For specific Node versions, use the following tags:

```
docker pull ppiper/node-browsers:20-bookworm
docker pull ppiper/node-browsers:22-bookworm
docker pull ppiper/node-browsers:22-trixie
docker pull ppiper/node-browsers:24-bookworm
Expand All @@ -47,7 +46,7 @@ To build this image locally, open a terminal in the directory of the Dockerfile
docker build --build-arg=BASE_IMAGE_TAG=26-trixie -t ppiper/node-browsers .
```

Where the `BASE_IMAGE_TAG` can be set to `20-bookworm`, `22-bookworm`, `22-trixie`, `24-bookworm`, `24-trixie`, or `26-trixie`.
Where the `BASE_IMAGE_TAG` can be set to `22-bookworm`, `22-trixie`, `24-bookworm`, `24-trixie`, or `26-trixie`.
The given tag **must** exist in the [node](https://hub.docker.com/_/node) base image **and** use Debian GNU/Linux.

## Usage
Expand Down
Loading