Skip to content

Commit

Permalink
ci(api): Change docker build context
Browse files Browse the repository at this point in the history
  • Loading branch information
vvatelot committed Feb 13, 2024
1 parent 959a213 commit 58fba49
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/api_build_publish_docker_hub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
context: projects/ecoindex_api/docker/backend/
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: projects/ecoindex_api/docker/backend/dockerfile
file: dockerfile
build-args: wheel=${{ needs.python_project.outputs.wheel }}

worker_image:
Expand Down Expand Up @@ -136,10 +136,10 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v4
with:
context: .
context: projects/ecoindex_api/docker/worker/
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
file: projects/ecoindex_api/docker/worker/dockerfile
file: dockerfile
build-args: wheel=${{ needs.python_project.outputs.wheel }}

0 comments on commit 58fba49

Please sign in to comment.