fix(Dockerfile): add missing labels
All checks were successful
Auto release / tag_on_change (push) Successful in 12s
Build / build-amd64 (push) Successful in 1m6s
Lint Markdown files / markdown-lint (push) Successful in 4s
Build / build-arm64 (push) Successful in 1m42s

This commit is contained in:
2026-05-03 19:18:10 +02:00
parent 11e9812085
commit 4e47d86ca7

View File

@@ -19,5 +19,8 @@ RUN NAME=docker-compose-$(uname | tr [:upper:] [:lower:])-$(uname -m); \
FROM scratch
LABEL org.opencontainers.image.description="Define and run multi-container applications with Docker" \
io.artifacthub.package.readme-url="https://github.com/docker/compose"
COPY --from=download /tmp/docker-compose /usr/bin/docker-compose
ENTRYPOINT [ "/usr/bin/docker-compose" ]