Skip to content

Upgrade all debian bullseye images to trixie (debian 13) #3

Upgrade all debian bullseye images to trixie (debian 13)

Upgrade all debian bullseye images to trixie (debian 13) #3

Workflow file for this run

name: Build Node.js Images
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "nodejs/**/*"
- nodejs/entrypoint.sh
- ".github/workflows/nodejs.yml"
jobs:
build:
name: "Node.js ${{ matrix.version }}"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version:
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
with:
version: "v0.9.1"
buildkitd-flags: --debug
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v3
with:
context: ./nodejs
file: ./nodejs/nodejs-${{ matrix.version }}/Dockerfile
platforms: linux/amd64
push: true
tags: |
ghcr.io/sparkedhost/images:nodejs-${{ matrix.version }}