Build base image #135
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 base image | |
on: | |
schedule: | |
# Runs 6am on Mondays (see https://crontab.guru) | |
- cron: '0 6 * * 1' | |
workflow_dispatch: | |
jobs: | |
build-docker-images: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: [20] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
with: | |
version: latest | |
- name: Login to DockerHub | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push base image | |
uses: docker/build-push-action@v3 | |
with: | |
context: provisioning/base | |
file: provisioning/base/Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: maelstromeous/ps2alerts:aggregator-base |