Skip to content

Commit

Permalink
Set context for docker build to root directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarini committed Dec 11, 2024
1 parent d978084 commit 2e78633
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
name: Build and push
uses: docker/build-push-action@v3
with:
context: ./backend
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.backendMeta.outputs.tags }}
Expand All @@ -95,7 +95,7 @@ jobs:
name: Build and push
uses: docker/build-push-action@v3
with:
context: ./backend
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.heartbeatMeta.outputs.tags }}
Expand All @@ -106,7 +106,7 @@ jobs:
name: Build and push
uses: docker/build-push-action@v3
with:
context: ./backend
context: .
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.messagesMeta.outputs.tags }}
Expand Down

0 comments on commit 2e78633

Please sign in to comment.