This commit is contained in:
Angel Nunez Mencias 2025-06-01 12:13:57 +02:00
parent 226e443e03
commit 65936f7933
Signed by: angel.nunez
SSH key fingerprint: SHA256:z1nFAg1v1AfbhEHrgBetByUJUwziv2R2f4VyN75opcg

View file

@ -36,6 +36,8 @@ jobs:
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
with:
driver-opts: network=host
- name: Login to git.kvant.cloud registry - name: Login to git.kvant.cloud registry
uses: docker/login-action@v3 uses: docker/login-action@v3
@ -70,6 +72,10 @@ jobs:
LLAMA_STACK_DIR: . LLAMA_STACK_DIR: .
run: | run: |
uvx --from . llama stack build --template kvant --image-type container uvx --from . llama stack build --template kvant --image-type container
docker tag distribution-kvant:dev ${{env.IMAGE}}:kvant
docker push ${{env.IMAGE}}:kvant
docker tag distribution-kvant:dev localhost:5000/distribution-kvant:dev docker tag distribution-kvant:dev localhost:5000/distribution-kvant:dev
docker push localhost:5000/distribution-kvant:dev docker push localhost:5000/distribution-kvant:dev