Skip to content

Commit 7a88c1d

Browse files
committed
Merge branch 'release/22.14.0'
2 parents e4901aa + a065b31 commit 7a88c1d

File tree

2 files changed

+16
-22
lines changed

2 files changed

+16
-22
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Base image containing dependencies used in builder and final image
2-
FROM ghcr.io/swissgrc/azure-pipelines-dotnet:9.0.102 AS base
2+
FROM ghcr.io/swissgrc/azure-pipelines-dotnet:9.0.200 AS base
33

44

55
# Builder image
@@ -45,7 +45,7 @@ COPY --from=build /etc/apt/sources.list.d/ /etc/apt/sources.list.d
4545
# Install NodeJS
4646

4747
# renovate: datasource=github-tags depName=nodejs/node extractVersion=^v(?<version>.*)$
48-
ENV NODE_VERSION=22.13.1
48+
ENV NODE_VERSION=22.14.0
4949

5050
RUN apt-get update -y && \
5151
# Install NodeJs

README.md

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@
1010

1111
This image can be used to run Node.js commands in [Azure Pipelines container jobs].
1212

13-
The following software is additionally available in the image:
14-
15-
| Software | Included since |
16-
|------------|----------------|
17-
| Docker CLI | 22.11.0 |
18-
| Git | 22.11.0 |
19-
| .NET 9 | 22.11.0 |
20-
2113
### Azure Pipelines Container Job
2214

2315
To use the image in an Azure Pipelines Container Job, add one of the following example tasks and use it with the `container` property.
@@ -38,17 +30,19 @@ The following example shows the container used for a deployment step with a Azur
3830
node --version
3931
```
4032
41-
### Tags
42-
43-
| Tag | Description | Base Image | Node.js | Yarn | Size |
44-
|------------------|-----------------------------------------------------------------------------------------------------|-----------------------------------------|---------|---------|---------------------------------------------------------------------------------------------------------------------------------------|
45-
| latest | Latest stable release (from `main` branch) | swissgrc/azure-pipelines-dotnet:9.0.102 | 22.13.1 | 1.22.22 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/latest?style=flat-square) |
46-
| latest-22-net9 | Indentical to `latest` tag | | | | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/latest-22-net9?style=flat-square) |
47-
| unstable | Latest unstable release (from `develop` branch) | swissgrc/azure-pipelines-dotnet:9.0.102 | 22.13.1 | 1.22.22 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/unstable?style=flat-square) |
48-
| unstable-22-net9 | Indentical to `unstable` tag | | | | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/unstable-22-net9?style=flat-square) |
49-
| 22.11.0-net9 | [Node.js 22.11.0](https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.11.0) | swissgrc/azure-pipelines-dotnet:9.0.100 | 22.11.0 | 1.22.22 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/22.11.0-net9?style=flat-square) |
50-
| 22.12.0-net9 | [Node.js 22.12.0](https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.12.0) | swissgrc/azure-pipelines-dotnet:9.0.100 | 22.12.0 | 1.22.22 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/22.12.0-net9?style=flat-square) |
51-
| 22.13.0-net9 | [Node.js 22.13.0](https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.13.0) | swissgrc/azure-pipelines-dotnet:9.0.100 | 22.13.0 | 1.22.22 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/22.13.0-net9?style=flat-square) |
52-
| 22.13.1-net9 | [Node.js 22.13.1](https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.13.1) | swissgrc/azure-pipelines-dotnet:9.0.102 | 22.13.1 | 1.22.22 | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/22.13.1-net9?style=flat-square) |
33+
## Included Software
34+
- [swissgrc/azure-pipelines-dotnet:9](https://github.com/swissgrc/docker-azure-pipelines-dotnet-9) as base image
35+
- Node.js 22
36+
- Yarn
37+
38+
## Tags
39+
40+
| Tag | Description | Size |
41+
|------------------|------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------|
42+
| latest | Latest stable release (from `main` branch) | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/latest?style=flat-square) |
43+
| latest-22-net9 | Indentical to `latest` tag | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/latest-22-net9?style=flat-square) |
44+
| unstable | Latest unstable release (from `develop` branch) | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/unstable?style=flat-square) |
45+
| unstable-22-net9 | Indentical to `unstable` tag | ![Docker Image Size (tag)](https://img.shields.io/docker/image-size/swissgrc/azure-pipelines-node/unstable-22-net9?style=flat-square) |
46+
| x.y.z-net9 | Image for a specific version of Node.js | |
5347

5448
[Azure Pipelines container jobs]: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/container-phases

0 commit comments

Comments
 (0)