From: Marc Date: Sun, 27 Oct 2024 20:51:10 +0000 (+0100) Subject: Add image source label to dockerfiles (#269) X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=fbb90ec4bb684ecc86138075ed628151503a1b54;p=roundcube-roundcubemail-docker.git Add image source label to dockerfiles (#269) --- diff --git a/apache/Dockerfile b/apache/Dockerfile index c2a847c..ef12381 100644 --- a/apache/Dockerfile +++ b/apache/Dockerfile @@ -1,5 +1,6 @@ FROM php:8.1-apache LABEL maintainer="Thomas Bruederli " +LABEL org.opencontainers.image.source="https://github.com/roundcube/roundcubemail-docker" RUN set -ex; \ apt-get update; \ diff --git a/fpm-alpine/Dockerfile b/fpm-alpine/Dockerfile index f48e313..8d2417d 100644 --- a/fpm-alpine/Dockerfile +++ b/fpm-alpine/Dockerfile @@ -1,5 +1,6 @@ FROM php:8.1-fpm-alpine LABEL maintainer="Thomas Bruederli " +LABEL org.opencontainers.image.source="https://github.com/roundcube/roundcubemail-docker" # entrypoint.sh and installto.sh dependencies RUN set -ex; \ diff --git a/fpm/Dockerfile b/fpm/Dockerfile index d4075d6..c03268c 100644 --- a/fpm/Dockerfile +++ b/fpm/Dockerfile @@ -1,5 +1,6 @@ FROM php:8.1-fpm LABEL maintainer="Thomas Bruederli " +LABEL org.opencontainers.image.source="https://github.com/roundcube/roundcubemail-docker" RUN set -ex; \ apt-get update; \ diff --git a/nightly/Dockerfile b/nightly/Dockerfile index 0b7a4f9..478a2a9 100644 --- a/nightly/Dockerfile +++ b/nightly/Dockerfile @@ -1,5 +1,6 @@ FROM php:8.0-apache AS base LABEL maintainer="Thomas Bruederli " +LABEL org.opencontainers.image.source="https://github.com/roundcube/roundcubemail-docker" RUN set -ex; \ apt-get update; \ diff --git a/templates/Dockerfile-alpine.templ b/templates/Dockerfile-alpine.templ index d7eea75..17787d4 100644 --- a/templates/Dockerfile-alpine.templ +++ b/templates/Dockerfile-alpine.templ @@ -1,5 +1,6 @@ FROM php:8.1-%%VARIANT%% LABEL maintainer="Thomas Bruederli " +LABEL org.opencontainers.image.source="https://github.com/roundcube/roundcubemail-docker" # entrypoint.sh and installto.sh dependencies RUN set -ex; \ diff --git a/templates/Dockerfile-debian.templ b/templates/Dockerfile-debian.templ index 44967dd..d4886b9 100644 --- a/templates/Dockerfile-debian.templ +++ b/templates/Dockerfile-debian.templ @@ -1,5 +1,6 @@ FROM php:8.1-%%VARIANT%% LABEL maintainer="Thomas Bruederli " +LABEL org.opencontainers.image.source="https://github.com/roundcube/roundcubemail-docker" RUN set -ex; \ apt-get update; \