From: Jan Hák Date: Fri, 7 Jul 2023 07:49:11 +0000 (+0200) Subject: docker: change MAINTAINER to LABEL due to deprecation X-Git-Tag: v3.4.dev~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aca31372f7ee7dcf772c7ce650823edec6ea5000;p=thirdparty%2Fknot-dns.git docker: change MAINTAINER to LABEL due to deprecation --- diff --git a/Dockerfile b/Dockerfile index e2d4d8adec..e137ab0a05 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ RUN if [ "$CHECK" = "enable" ]; then make -j$(grep -c ^processor /proc/cpuinfo) ## Final stage ## FROM debian:bookworm-slim -MAINTAINER Knot DNS +LABEL maintainer="Knot DNS " # Environment ENV RUNTIME_PKGS \ diff --git a/scripts/docker/debian-latest/Dockerfile b/scripts/docker/debian-latest/Dockerfile index 41c78a4101..6100a31a7d 100644 --- a/scripts/docker/debian-latest/Dockerfile +++ b/scripts/docker/debian-latest/Dockerfile @@ -1,5 +1,5 @@ FROM debian:stable-slim -MAINTAINER Knot DNS +LABEL maintainer="Knot DNS " ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update RUN apt-get -y dist-upgrade diff --git a/scripts/docker/debian-unstable/Dockerfile b/scripts/docker/debian-unstable/Dockerfile index bc400f331d..2c23027a5b 100644 --- a/scripts/docker/debian-unstable/Dockerfile +++ b/scripts/docker/debian-unstable/Dockerfile @@ -1,5 +1,5 @@ FROM debian:unstable-slim -MAINTAINER Knot DNS +LABEL maintainer="Knot DNS " ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update RUN apt-get -y dist-upgrade diff --git a/scripts/docker/fedora-latest/Dockerfile b/scripts/docker/fedora-latest/Dockerfile index 958ca5d243..0bb8df456f 100644 --- a/scripts/docker/fedora-latest/Dockerfile +++ b/scripts/docker/fedora-latest/Dockerfile @@ -1,5 +1,5 @@ FROM fedora:latest -MAINTAINER Knot DNS +LABEL maintainer="Knot DNS " ENV DEBIAN_FRONTEND noninteractive RUN dnf -y upgrade RUN dnf -y install \ diff --git a/scripts/docker/rocky-latest/Dockerfile b/scripts/docker/rocky-latest/Dockerfile index 0e26b0a520..a4ae823867 100644 --- a/scripts/docker/rocky-latest/Dockerfile +++ b/scripts/docker/rocky-latest/Dockerfile @@ -1,5 +1,5 @@ FROM rockylinux:9 -MAINTAINER Knot DNS +LABEL maintainer="Knot DNS " ENV DEBIAN_FRONTEND noninteractive RUN dnf -y upgrade RUN dnf -y install epel-release diff --git a/scripts/docker/ubuntu-latest/Dockerfile b/scripts/docker/ubuntu-latest/Dockerfile index dd951be70c..7807028973 100644 --- a/scripts/docker/ubuntu-latest/Dockerfile +++ b/scripts/docker/ubuntu-latest/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:latest -MAINTAINER Knot DNS +LABEL maintainer="Knot DNS " ENV DEBIAN_FRONTEND noninteractive RUN apt-get -y update RUN apt-get -y dist-upgrade