Skip to content

Commit

Permalink
Fix docker image builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lassemoldrup committed Feb 13, 2024
1 parent d15e0d8 commit 1e930d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
matrix:
image:
- {dir: euroe-demo, dockerfile: scripts/Dockerfile}
- {dir: gallery, dockerfile: Dockerfile}
- {dir: ., dockerfile: gallery/Dockerfile}
- {dir: signMessage, dockerfile: Dockerfile}
- {dir: simpleAgeVerification, dockerfile: Dockerfile}
- {dir: sponsoredTransactions, dockerfile: Dockerfile}
- {dir: sponsoredTransactionsAuction, dockerfile: Dockerfile}
- {dir: ., dockerfile: sponsoredTransactions/Dockerfile}
- {dir: ., dockerfile: sponsoredTransactionsAuction/Dockerfile}

steps:
- name: Checkout
Expand All @@ -34,5 +34,5 @@ jobs:
- name: Build image
working-directory: ${{ matrix.image.dir }}
run:
docker build -t ${{ matrix.image.dir }} -f ${{ matrix.image.dockerfile }} .
docker build -f ${{ matrix.image.dockerfile }} .

0 comments on commit 1e930d0

Please sign in to comment.