Fix node 22 version and use bookworm slim docker variant #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Docker | |
# Build and push php images to Docker Hub | |
name: Build and push | |
on: | |
push: | |
paths: | |
- 'build/**' | |
- '.github/**' | |
branches: | |
- 'main' | |
tags: | |
- '*' | |
jobs: | |
node20-base: | |
name: Build and push node20 base image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./build/node20/base | |
file: ./build/node20/base/Dockerfile | |
cache-from: type=gha,scope=node20 | |
cache-to: type=gha,scope=node20,mode=max | |
push: true | |
tags: anzusystems/node:${{ github.ref_name }}-node20,anzusystems/node:latest-node20 | |
node20-nginx: | |
name: Build and push node20 nginx image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./build/node20/nginx | |
file: ./build/node20/nginx/Dockerfile | |
cache-from: type=gha,scope=node20-nginx | |
cache-to: type=gha,scope=node20-nginx,mode=max | |
push: true | |
tags: anzusystems/node:${{ github.ref_name }}-node20-nginx,anzusystems/node:latest-node20-nginx | |
node20-nginx-browsers: | |
name: Build and push node20 nginx-browsers image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./build/node20/nginx-browsers | |
file: ./build/node20/nginx-browsers/Dockerfile | |
cache-from: type=gha,scope=node20-nginx-browsers | |
cache-to: type=gha,scope=node20-nginx-browsers,mode=max | |
push: true | |
tags: anzusystems/node:${{ github.ref_name }}-node20-nginx-browsers,anzusystems/node:latest-node20-nginx-browsers | |
node22-base: | |
name: Build and push node22 base image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./build/node22/base | |
file: ./build/node22/base/Dockerfile | |
cache-from: type=gha,scope=node22 | |
cache-to: type=gha,scope=node22,mode=max | |
push: true | |
tags: anzusystems/node:${{ github.ref_name }}-node22,anzusystems/node:latest-node22 | |
node22-nginx: | |
name: Build and push node22 nginx image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./build/node22/nginx | |
file: ./build/node22/nginx/Dockerfile | |
cache-from: type=gha,scope=node22-nginx | |
cache-to: type=gha,scope=node22-nginx,mode=max | |
push: true | |
tags: anzusystems/node:${{ github.ref_name }}-node22-nginx,anzusystems/node:latest-node22-nginx | |
node22-nginx-browsers: | |
name: Build and push node22 nginx-browsers image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./build/node22/nginx-browsers | |
file: ./build/node22/nginx-browsers/Dockerfile | |
cache-from: type=gha,scope=node22-nginx-browsers | |
cache-to: type=gha,scope=node22-nginx-browsers,mode=max | |
push: true | |
tags: anzusystems/node:${{ github.ref_name }}-node22-nginx-browsers,anzusystems/node:latest-node22-nginx-browsers | |