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
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- "**"
pull_request:
branches:
- master
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
Expand All @@ -13,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
base-image-tag: [22-bookworm, 24-bookworm, 26-trixie]
base-image-tag: [22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie]
steps:
- uses: actions/checkout@master
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
base-image-tag: [22-bookworm, 24-bookworm, 26-trixie]
base-image-tag: [22-bookworm, 22-trixie, 24-bookworm, 24-trixie, 26-trixie]
steps:
- uses: actions/checkout@v3
- name: Test
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ For specific Node versions, use the following tags:

```
docker pull ppiper/node-browsers:22-bookworm
docker pull ppiper/node-browsers:22-trixie
docker pull ppiper/node-browsers:24-bookworm
docker pull ppiper/node-browsers:24-trixie
docker pull ppiper/node-browsers:26-trixie
```

Expand All @@ -42,7 +44,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 `22-bookworm`, `24-bookworm`, 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