From ef8c20053957a0ec2f6e990bd36a22bc8274e5ab Mon Sep 17 00:00:00 2001 From: Angel Nunez Mencias Date: Mon, 26 May 2025 06:30:52 +0200 Subject: [PATCH] wip --- .github/workflows/Dockerfile | 2 +- .github/workflows/ci.yaml | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Dockerfile b/.github/workflows/Dockerfile index f661aa36b..9261bd174 100644 --- a/.github/workflows/Dockerfile +++ b/.github/workflows/Dockerfile @@ -1 +1 @@ -FROM distribution-kvant:dev \ No newline at end of file +FROM localhost:5000/distribution-kvant:dev \ No newline at end of file diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index b6588fc54..46b134247 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -19,6 +19,11 @@ env: jobs: build_concierge_backend: runs-on: ubuntu-latest + services: + registry: + image: registry:2 + ports: + - 5000:5000 steps: - name: Checkout uses: actions/checkout@v4 @@ -63,7 +68,9 @@ jobs: env: USE_COPY_NOT_MOUNT: true LLAMA_STACK_DIR: . - run: uvx --from . llama stack build --template kvant --image-type container + run: | + uvx --from . llama stack build --template kvant --image-type container + docker tag distribution-kvant:dev localhost:5000/distribution-kvant:dev - name: Build and push to gitea registry uses: docker/build-push-action@v6