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@v3 - name: Set up QEMU uses: docker/setup-qemu-action@v2.2.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2.9.0 - name: Login to DockerHub uses: docker/login-action@v2.2.0 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: wger/base:latest,wger/base:2.2-dev