Skip to content

Commit

Permalink
build-customer [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
denismaggior8 committed Sep 27, 2023
1 parent 01169b3 commit 5fa03da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
id: get_commit_sha
run: echo ::set-output name=COMMIT_SHA::$(git rev-parse --short "$GITHUB_SHA")
- name: Build and push Docker image
uses: docker/build-push-action@v1.1.0
uses: docker/build-push-action@v4.2.1
with:
path: labs/02-eCommerce_microservices/customer/
dockerfile: labs/02-eCommerce_microservices/customer/Dockerfile
Expand All @@ -38,7 +38,7 @@ jobs:
tags: ${{ steps.get_commit_sha.outputs.COMMIT_SHA }}-${{ steps.get_branch.outputs.BRANCH }}, latest
build_args: |
TAG=${{ steps.get_commit_sha.outputs.COMMIT_SHA }}-${{ steps.get_branch.outputs.BRANCH }}
add-hosts: customer-mongodb=127.0.0.1,order-postgres=127.0.0.1,kafka=127.0.0.1
add-hosts: customer-mongodb:127.0.0.1,order-postgres:127.0.0.1,kafka:127.0.0.1

build-order:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"java.configuration.updateBuildConfiguration": "disabled"
}
8 changes: 4 additions & 4 deletions labs/02-eCommerce_microservices/notification/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@
</dependency>

<!-- Spring Devtools -->
<dependency>
<!--<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
</dependency>-->

<!-- Sleuth -->
<dependency>
Expand Down Expand Up @@ -122,11 +122,11 @@
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.camel.springboot/camel-mock-starter -->
<dependency>
<!--<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-mock-starter</artifactId>
<version>3.9.0</version>
</dependency>
</dependency>-->

<!-- https://mvnrepository.com/artifact/org.apache.camel/camel-test-spring-junit5 -->
<dependency>
Expand Down

0 comments on commit 5fa03da

Please sign in to comment.