From d03a88a81eda07b6887df442633c1be25db210db Mon Sep 17 00:00:00 2001 From: rozachatz Date: Wed, 9 Oct 2024 14:14:27 +0300 Subject: [PATCH] CI fix --- .github/workflows/ci-config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-config.yml b/.github/workflows/ci-config.yml index a148a0c..398477b 100644 --- a/.github/workflows/ci-config.yml +++ b/.github/workflows/ci-config.yml @@ -28,11 +28,10 @@ jobs: run: mvn -B package --file pom.xml - name: Build the MoneyTransfer microservice Docker image - run: docker build . --file ./moneytransfer/Dockerfile --tag ghcr.io/${{ github.repository_owner }}/money-transfer-app:latest + run: docker build ./moneytransfer --file ./moneytransfer/Dockerfile --tag ghcr.io/${{ github.repository_owner }}/money-transfer-app:latest - name: Build the Notifications microservice Docker image - run: docker build . --file ./notifications/Dockerfile --tag ghcr.io/${{ github.repository_owner }}/notifications-app:latest - + run: docker build ./notifications --file ./notifications/Dockerfile --tag ghcr.io/${{ github.repository_owner }}/notifications-app:latest - name: List Docker images run: docker images