From b7c4242379ddaa5f7502603fc8fb6e0cd1fdacec Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Thu, 7 Aug 2025 20:49:36 +0200 Subject: [PATCH] Update DockerfIle Signed-off-by: Kjeld Schouten --- containers/apps/bfics/DockerfIle | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/containers/apps/bfics/DockerfIle b/containers/apps/bfics/DockerfIle index 1281e067337..b5e2e80655b 100644 --- a/containers/apps/bfics/DockerfIle +++ b/containers/apps/bfics/DockerfIle @@ -24,3 +24,15 @@ RUN crontab /app/crontab.txt # Start cron and HTTP server CMD sh -c "crond -f -L /dev/stdout & python3 -m http.server 8000 --directory /app" + +LABEL "org.opencontainers.image.source"="https://github.com/truecharts/containers" + +ARG CONTAINER_NAME +ARG CONTAINER_VER +LABEL org.opencontainers.image.licenses="BSD-3-Clause" +LABEL org.opencontainers.image.title="${CONTAINER_NAME}" +LABEL org.opencontainers.image.url="https://truecharts.org/docs/charts/${CONTAINER_NAME}" +LABEL org.opencontainers.image.version="${CONTAINER_VER}" +LABEL org.opencontainers.image.description="Container for ${CONTAINER_NAME} by TrueCharts" +LABEL org.opencontainers.image.authors="TrueCharts" +LABEL org.opencontainers.image.documentation="https://truecharts.org/docs/charts/${CONTAINER_NAME}"