Skip to content

Commit

Permalink
Build Docker image for ARM (#201)
Browse files Browse the repository at this point in the history
This allows us to run this image in our new multi-arch Azure Kubernetes
cluster.

Similar to WATonomous/slurm-dist#2 and
https://github.com/WATonomous/repo-ingestion/pull/1/files

cc @Jimmyj30

---------

Co-authored-by: Jimmy Jiang <[email protected]>
  • Loading branch information
ben-z and Jimmyj30 authored Aug 16, 2024
1 parent b211f5a commit a5c0d8c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/push-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
push:
branches:
- master
pull_request:
branches:
- master

env:
IMAGE_NAME: ${{ github.repository }}
Expand All @@ -29,13 +32,22 @@ jobs:
username: ${{ env.REGISTRY_USER }}
password: ${{ env.REGISTRY_PASSWORD }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db

- name: Extract metadata (tags, labels) for Docker (frontend)
id: meta-frontend
uses: docker/metadata-action@c4ee3adeed93b1fa6a762f209fb01608c1a22f1e
with:
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
suffix=-frontend
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha,format=long
- name: Extract metadata (tags, labels) for Docker (backend)
id: meta-backend
Expand All @@ -44,11 +56,18 @@ jobs:
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
suffix=-backend
tags: |
type=schedule
type=ref,event=branch
type=ref,event=tag
type=ref,event=pr
type=sha,format=long
- name: Build and push Docker image (frontend)
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
with:
context: frontend
platforms: linux/amd64,linux/arm64
push: true
build-args: |
DOCKER_METADATA_OUTPUT_JSON
Expand All @@ -59,6 +78,7 @@ jobs:
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
with:
context: backend
platforms: linux/amd64,linux/arm64
push: true
build-args: |
DOCKER_METADATA_OUTPUT_JSON
Expand Down

0 comments on commit a5c0d8c

Please sign in to comment.