Skip to content

test: on push

test: on push #1

Workflow file for this run

name: test docker
on: [push]
jobs:
docker:
name: Build docker image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./apps/coordinator/Dockerfile
push: false
platforms: linux/amd64,linux/arm64