From 3f70209820e06be622c85ce502884d92432832c3 Mon Sep 17 00:00:00 2001 From: Croydon Date: Sat, 2 Jan 2021 00:56:35 +0100 Subject: [PATCH] Use LABEL instead of MAINTAINER The MAINTAINER instruction is deprecated since Docker 1.13.0 and should not be used anymore. Instead the more flexible LABEL instruction can be used Documentation: https://docs.docker.com/engine/deprecated/#maintainer-in-dockerfile https://docs.docker.com/engine/reference/builder/#maintainer-deprecated --- Dockerfile.local | 2 +- Dockerfile.travis | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.local b/Dockerfile.local index 7a3ba0e..44c537e 100644 --- a/Dockerfile.local +++ b/Dockerfile.local @@ -1,6 +1,6 @@ FROM ubuntu:16.04 -MAINTAINER mbredel "https://github.com/mbredel" +LABEL maintainer="mbredel https://github.com/mbredel" # Install packages for building the LaTeX template. RUN apt-get -qq update && apt-get install -y --no-install-recommends \ diff --git a/Dockerfile.travis b/Dockerfile.travis index 2513515..545bfb3 100644 --- a/Dockerfile.travis +++ b/Dockerfile.travis @@ -1,6 +1,6 @@ FROM ubuntu:16.04 -MAINTAINER mbredel "https://github.com/mbredel" +LABEL maintainer="mbredel https://github.com/mbredel" # Install packages for building the LaTeX template. RUN apt-get -qq update && apt-get install -y --no-install-recommends \