Merge pull request #1699 from wger-project/dependabot/github_actions/… #60
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
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/[email protected] | |
- 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@v6 | |
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 |