docker: change MAINTAINER to LABEL due to deprecation

This commit is contained in:
Jan Hák 2023-07-07 09:49:11 +02:00 committed by Daniel Salzman
parent b07c3c2821
commit aca31372f7
6 changed files with 6 additions and 6 deletions

View file

@ -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 <knot-dns@labs.nic.cz>
LABEL maintainer="Knot DNS <knot-dns@labs.nic.cz>"
# Environment
ENV RUNTIME_PKGS \

View file

@ -1,5 +1,5 @@
FROM debian:stable-slim
MAINTAINER Knot DNS <knot-dns@labs.nic.cz>
LABEL maintainer="Knot DNS <knot-dns@labs.nic.cz>"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update
RUN apt-get -y dist-upgrade

View file

@ -1,5 +1,5 @@
FROM debian:unstable-slim
MAINTAINER Knot DNS <knot-dns@labs.nic.cz>
LABEL maintainer="Knot DNS <knot-dns@labs.nic.cz>"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update
RUN apt-get -y dist-upgrade

View file

@ -1,5 +1,5 @@
FROM fedora:latest
MAINTAINER Knot DNS <knot-dns@labs.nic.cz>
LABEL maintainer="Knot DNS <knot-dns@labs.nic.cz>"
ENV DEBIAN_FRONTEND noninteractive
RUN dnf -y upgrade
RUN dnf -y install \

View file

@ -1,5 +1,5 @@
FROM rockylinux:9
MAINTAINER Knot DNS <knot-dns@labs.nic.cz>
LABEL maintainer="Knot DNS <knot-dns@labs.nic.cz>"
ENV DEBIAN_FRONTEND noninteractive
RUN dnf -y upgrade
RUN dnf -y install epel-release

View file

@ -1,5 +1,5 @@
FROM ubuntu:latest
MAINTAINER Knot DNS <knot-dns@labs.nic.cz>
LABEL maintainer="Knot DNS <knot-dns@labs.nic.cz>"
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update
RUN apt-get -y dist-upgrade