Skip to content

Build and push base Docker images #54

Build and push base Docker images

Build and push base Docker images #54

Workflow file for this run

name: Build and push base Docker images
# Only build when the dockerfile has changed, otherwise scheduled on the first
# of each month
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'extras/docker/base/Dockerfile'
- '.github/workflows/docker-base.yml'
schedule:
- cron: '0 5 1 * *'
jobs:
path-context:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build base image
uses: docker/build-push-action@v5
with:
context: .
push: true
file: extras/docker/base/Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm/v7
tags: ${{ vars.REGISTRY_REPO }}/base:latest,${{ vars.REGISTRY_REPO }}/base:2.3-dev