Skip to content

Commit

Permalink
Build the correct notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
davschneller committed May 22, 2024
1 parent 3567528 commit 3ad31e7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/run-and-deploy-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,27 @@ jobs:
uses: docker/metadata-action@v4
with:
images: seissol/training
- name: Prepare x86-64 label
uses: docker/metadata-action@v4
with:
flavor: |
suffix=x86_64
- name: Build and push Docker image (x86-64)
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile_jupyterlab
file: Dockerfile
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max
labels: ${{ steps.meta.outputs.labels }}
- name: Prepare ARM label
uses: docker/metadata-action@v4
with:
flavor: |
suffix=arm
- name: Build and push Docker image (ARM)
uses: docker/build-push-action@v4
with:
Expand All @@ -52,3 +62,4 @@ jobs:
cache-from: type=gha
cache-to: type=gha,mode=max
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 3ad31e7

Please sign in to comment.