File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -330,7 +330,9 @@ jobs:
330330 # Create manifest for each target tag
331331 for TAG in ${TARGET_TAGS}; do
332332 echo "Creating manifest for ${TAG} from: ${SOURCE_IMAGES}"
333- docker buildx imagetools create -t "${TAG}" ${SOURCE_IMAGES}
333+ docker buildx imagetools create \
334+ --annotation "index:org.opencontainers.image.description=A drag and drop UI for building Temporal workflows" \
335+ -t "${TAG}" ${SOURCE_IMAGES}
334336
335337 cosign sign --yes "${TAG}"
336338 syft "${TAG}" -o cyclonedx-json > sbom.json
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ FROM gcr.io/distroless/nodejs20
4040ARG GIT_COMMIT
4141ARG GIT_REPO
4242ARG VERSION
43+ LABEL org.opencontainers.image.description="A drag and drop UI for building Temporal workflows"
4344WORKDIR /opt/app
4445ENV GIT_REPO="${GIT_REPO}"
4546ENV GIT_COMMIT="${GIT_COMMIT}"
You can’t perform that action at this time.
0 commit comments