Skip to content

Commit

Permalink
Update docker context
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Walczak committed Jan 15, 2024
1 parent bdb7719 commit 5f42f3d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Build and push datastore component
uses: docker/build-push-action@v4
with:
context: .
context: ./datastore
file: ./datastore/Dockerfile
push: true
build-args: |
Expand All @@ -58,7 +58,7 @@ jobs:
- name: Build and push api component
uses: docker/build-push-action@v4
with:
context: .
context: ./api
file: ./api/Dockerfile
push: true
build-args: |
Expand All @@ -69,7 +69,7 @@ jobs:
- name: Build and push executor component
uses: docker/build-push-action@v4
with:
context: .
context: ./executor
file: ./executor/Dockerfile
push: true
build-args: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Build and push datastore component
uses: docker/build-push-action@v4
with:
context: .
context: ./datastore
file: ./datastore/Dockerfile
push: true
build-args: |
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Build and push api component
uses: docker/build-push-action@v4
with:
context: .
context: ./api
file: ./api/Dockerfile
push: true
build-args: |
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Build and push executor component
uses: docker/build-push-action@v4
with:
context: .
context: ./executor
file: ./executor/Dockerfile
push: true
build-args: |
Expand Down

0 comments on commit 5f42f3d

Please sign in to comment.