diff options
| author | Alexander Barton <alex@barton.de> | 2024-04-29 13:54:48 +0200 |
|---|---|---|
| committer | Alexander Barton <alex@barton.de> | 2024-08-18 11:57:34 +0200 |
| commit | 0b8d3d23d9df844fcbe93424691f16bcaad503fb (patch) | |
| tree | 15e57257bf659550dfaa340b254ada052090cc69 | |
| parent | 37c31eeae0bdaad6ea6b6038459b0553115f7e2e (diff) | |
| download | ngircd-0b8d3d23d9df844fcbe93424691f16bcaad503fb.tar.gz ngircd-0b8d3d23d9df844fcbe93424691f16bcaad503fb.zip | |
Add labels to the containers
| -rw-r--r-- | contrib/Dockerfile | 6 |
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 \ |