diff --git a/.github/workflows/build-dev.yml b/.github/workflows/build-dev.yml index 867cd72b..60c009f3 100644 --- a/.github/workflows/build-dev.yml +++ b/.github/workflows/build-dev.yml @@ -43,7 +43,17 @@ jobs: cd ./engine - docker buildx build --build-arg="RELEASE_VERSION=${IMAGE_TAG}" --push --platform linux/amd64,linux/arm64 -t epsilla/vectordb:dev --label "org.opencontainers.image.version"=$IMAGE_TAG . + docker buildx build --build-arg="RELEASE_VERSION=${IMAGE_TAG}" \ + --platform linux/amd64,linux/arm64 \ + --label "org.opencontainers.image.description"="Official Epsilla Vector Database Image" \ + --label "org.opencontainers.image.documentation"="https://epsilla-inc.gitbook.io/epsilladb" \ + --label "org.opencontainers.image.source"="https://github.com/epsilla-cloud/vectordb" \ + --label "org.opencontainers.image.title"="Epsilla Vector Database" \ + --label "org.opencontainers.image.url"="https://www.epsilla.com" \ + --label "org.opencontainers.image.vendor"="Epsilla" \ + --label "org.opencontainers.image.version"=$IMAGE_TAG \ + --push \ + -t epsilla/vectordb:dev .