Skip to content

Commit fb64773

Browse files
committed
chore: add description to the docker image
Signed-off-by: Simon Emms <simon@simonemms.com>
1 parent c96a35e commit fb64773

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ FROM gcr.io/distroless/nodejs20
4040
ARG GIT_COMMIT
4141
ARG GIT_REPO
4242
ARG VERSION
43+
LABEL org.opencontainers.image.description="A drag and drop UI for building Temporal workflows"
4344
WORKDIR /opt/app
4445
ENV GIT_REPO="${GIT_REPO}"
4546
ENV GIT_COMMIT="${GIT_COMMIT}"

0 commit comments

Comments
 (0)