about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2024-04-29 13:54:48 +0200
committerAlexander Barton <alex@barton.de>2024-08-18 11:57:34 +0200
commit0b8d3d23d9df844fcbe93424691f16bcaad503fb (patch)
tree15e57257bf659550dfaa340b254ada052090cc69
parent37c31eeae0bdaad6ea6b6038459b0553115f7e2e (diff)
downloadngircd-0b8d3d23d9df844fcbe93424691f16bcaad503fb.tar.gz
ngircd-0b8d3d23d9df844fcbe93424691f16bcaad503fb.zip
Add labels to the containers
-rw-r--r--contrib/Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/Dockerfile b/contrib/Dockerfile
index 33eab278..de4cc37b 100644
--- a/contrib/Dockerfile
+++ b/contrib/Dockerfile
@@ -4,6 +4,9 @@
 # Build Container
 
 FROM docker.io/library/debian:stable-slim AS build
+LABEL org.opencontainers.image.source=https://github.com/ngircd/ngircd
+LABEL org.opencontainers.image.description="Free, portable and lightweight Internet Relay Chat server (build container)"
+LABEL org.opencontainers.image.licenses=GPL-2.0-or-later
 USER root
 RUN apt-get -y update \
 	&& apt-get -y install --no-install-recommends \
@@ -42,6 +45,9 @@ RUN ./autogen.sh --prefix=/opt/ngircd \
 # Run container
 
 FROM docker.io/library/debian:stable-slim
+LABEL org.opencontainers.image.source=https://github.com/ngircd/ngircd
+LABEL org.opencontainers.image.description="Free, portable and lightweight Internet Relay Chat server"
+LABEL org.opencontainers.image.licenses=GPL-2.0-or-later
 USER root
 RUN apt-get -y update \
 	&& apt-get -y install --no-install-recommends --no-install-suggests \