Skip to content

Commit

Permalink
Add workflow for data process hotfix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
wwxxzz committed Jan 9, 2025
1 parent 74dcae7 commit 29e1e00
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/hotfix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ jobs:
docker build -t ${{ env.REGISTRY }}/mybigpai/pairag:${{ env.SPECIFIC_IMAGE_TAG }} .
docker push ${{ env.REGISTRY }}/mybigpai/pairag:${{ env.SPECIFIC_IMAGE_TAG }}
- name: Build and push base data process image
env:
IMAGE_TAG: ${{env.VERSION_TAG}}-dataprocess
SPECIFIC_IMAGE_TAG: ${{env.SPECIFIC_VERSION_TAG}}-dataprocess
run: |
docker build -t ${{ env.REGISTRY }}/mybigpai/pairag:${{ env.SPECIFIC_IMAGE_TAG }} -f src/pai_rag/tools/data_process/docker/Dockerfile_cpu .
docker push ${{ env.REGISTRY }}/mybigpai/pairag:${{ env.SPECIFIC_IMAGE_TAG }}
- name: Build and push UI image
env:
IMAGE_TAG: ${{env.VERSION_TAG}}-ui
Expand Down

0 comments on commit 29e1e00

Please sign in to comment.