From 0446a74d28ba20d32262aaac2a2aa271a550ded3 Mon Sep 17 00:00:00 2001 From: Marc Date: Sun, 27 Oct 2024 11:09:02 +0100 Subject: [PATCH] feature: docker: add image source label to dockerfiles (#419) To get changelogs shown with Renovate a docker container has to add the source label described in the OCI Image Format Specification. For reference: https://github.com/renovatebot/renovate/blob/main/lib/modules/datasource/docker/readme.md --- docker/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/Dockerfile b/docker/Dockerfile index e056e946..c9ae3e20 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,6 @@ FROM node:lts-bookworm LABEL maintainer="Coderaiser" +LABEL org.opencontainers.image.source="https://github.com/coderaiser/cloudcmd" RUN mkdir -p /usr/src/app WORKDIR /usr/src/app