Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/swissgrc/docker-azure-pipelines-node22-net9
Docker image for running Node.js 22 in an Azure Pipelines container job
https://github.com/swissgrc/docker-azure-pipelines-node22-net9
azure-devops azure-pipelines docker nodejs
Last synced: 11 days ago
JSON representation
Docker image for running Node.js 22 in an Azure Pipelines container job
- Host: GitHub
- URL: https://github.com/swissgrc/docker-azure-pipelines-node22-net9
- Owner: swissgrc
- License: mit
- Created: 2024-11-28T15:42:25.000Z (2 months ago)
- Default Branch: develop
- Last Pushed: 2025-01-21T19:24:43.000Z (20 days ago)
- Last Synced: 2025-01-21T20:27:13.800Z (20 days ago)
- Topics: azure-devops, azure-pipelines, docker, nodejs
- Language: Dockerfile
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Docker image for running Node.js commands in an Azure Pipelines container job
[![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/swissgrc/docker-azure-pipelines-node22-net9/blob/main/LICENSE) [![Build](https://img.shields.io/github/actions/workflow/status/swissgrc/docker-azure-pipelines-node22-net9/publish.yml?branch=develop&style=flat-square)](https://github.com/swissgrc/docker-azure-pipelines-node22-net9/actions/workflows/publish.yml) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=swissgrc_docker-azure-pipelines-node22-net9&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=swissgrc_docker-azure-pipelines-node22-net9) [![Pulls](https://img.shields.io/docker/pulls/swissgrc/azure-pipelines-node.svg?style=flat-square)](https://hub.docker.com/r/swissgrc/azure-pipelines-node) [![Stars](https://img.shields.io/docker/stars/swissgrc/azure-pipelines-node.svg?style=flat-square)](https://hub.docker.com/r/swissgrc/azure-pipelines-node)
🐳 Docker image to run Node.js commands in [Azure Pipelines container jobs].
## Usage
This image can be used to run Node.js commands in [Azure Pipelines container jobs].
The following software is additionally available in the image:
| Software | Included since |
|------------|----------------|
| Docker CLI | 22.11.0 |
| Git | 22.11.0 |
| .NET 9 | 22.11.0 |### Azure Pipelines Container Job
To use the image in an Azure Pipelines Container Job, add one of the following example tasks and use it with the `container` property.
The following example shows the container used for a deployment step with a Azure CLI command:
```yaml
- stage: deploy
jobs:
- deployment: runAzureCLI
container: swissgrc/azure-pipelines-node:latest-22-net9
environment: smarthotel-dev
strategy:
runOnce:
deploy:
steps:
- bash: |
node --version
```### Tags
| Tag | Description | Base Image | Node.js | Yarn | Size |
|------------------|-----------------------------------------------------------------------------------------------------|-----------------------------------------|---------|---------|---------------------------------------------------------------------------------------------------------------------------------------|
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |[Azure Pipelines container jobs]: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/container-phases