From 80cd902c86bbb158938b32899d6a2ef9dd317785 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Thu, 28 Nov 2024 19:14:06 -0800 Subject: [PATCH] Since linux/amd64 images aren't being created, try setting a custom description on the image Refer to this GH documentation on working with multi arch images in the container registry: https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry#adding-a-description-to-multi-arch-images --- .github/workflows/dockerize.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/dockerize.yml b/.github/workflows/dockerize.yml index 619cd8b8..a0f0e1bf 100644 --- a/.github/workflows/dockerize.yml +++ b/.github/workflows/dockerize.yml @@ -91,6 +91,9 @@ jobs: PORT=42110 cache-from: type=gha,scope=${{ matrix.image }}-${{ matrix.platform }} cache-to: type=gha,mode=max,scope=${{ matrix.image }}-${{ matrix.platform}} + labels: | + org.opencontainers.image.description=Khoj AI - Your second brain powered by LLMs and Neural Search + org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }} - name: 📦️⛅️ Build and Push Cloud Docker Image uses: docker/build-push-action@v4 @@ -108,3 +111,6 @@ jobs: PORT=42110 cache-from: type=gha,scope=${{ matrix.image }}-${{ matrix.platform }} cache-to: type=gha,mode=max,scope=${{ matrix.image }}-${{ matrix.platform}} + labels: | + org.opencontainers.image.description=Khoj AI Cloud - Your second brain powered by LLMs and Neural Search + org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}