Skip to content

Commit

Permalink
Update Docker image build and push paths for services in docker-image…
Browse files Browse the repository at this point in the history
…s.yml
  • Loading branch information
cedricdcc committed Apr 25, 2024
1 parent a563337 commit 2bbc8e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
DIMGS="content-unification vocab-configs vocab-fetch"
cd services
for dimg in $DIMGS; do
echo "Building $REG_NS/$dimg:$BUILD_TAG"
docker build -t $REG_NS/$dimg:$BUILD_TAG -f $dimg/Dockerfile .
docker push $REG_NS/$dimg:$BUILD_TAG
echo "Building $REG_NS/services/$dimg:$BUILD_TAG"
docker build -t $REG_NS/services/$dimg:$BUILD_TAG -f $dimg/Dockerfile .
docker push $REG_NS/services/$dimg:$BUILD_TAG
done

0 comments on commit 2bbc8e1

Please sign in to comment.