diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4cb69c59..00e3bf98 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,10 +49,20 @@ jobs: mv buildx-v0.11.2.linux-amd64 $HOME/.docker/cli-plugins/docker-buildx docker buildx create --use docker buildx ls - docker buildx build --build-arg="RELEASE_VERSION=${IMAGE_TAG}" --push --platform linux/amd64,linux/arm64 -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG} -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG_LATEST} --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 ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG} \ + -t ${DOCKER_HUB_REPOSITORY}:${IMAGE_TAG_LATEST} . +