From 5cc7eae335ced1014b4f984e733e0093774618f9 Mon Sep 17 00:00:00 2001 From: Christophe Monniez Date: Tue, 29 Jan 2019 13:37:17 +0100 Subject: [PATCH] [FIX] Odoo 10.0-12.0: remove deprecated MAINTAINER instruction The MAINTAINER instruction is deprecated since Docker version 1.13. With this commit, the LABEL instruction is used instead. --- 10.0/Dockerfile | 2 +- 11.0/Dockerfile | 2 +- 12.0/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/10.0/Dockerfile b/10.0/Dockerfile index ee1ab72..e3c5183 100644 --- a/10.0/Dockerfile +++ b/10.0/Dockerfile @@ -1,5 +1,5 @@ FROM debian:jessie -MAINTAINER Odoo S.A. +LABEL maintainer="Odoo S.A. " # Install some deps, lessc and less-plugin-clean-css, and wkhtmltopdf RUN set -x; \ diff --git a/11.0/Dockerfile b/11.0/Dockerfile index 618b4eb..43f57dd 100644 --- a/11.0/Dockerfile +++ b/11.0/Dockerfile @@ -1,5 +1,5 @@ FROM debian:stretch -MAINTAINER Odoo S.A. +LABEL maintainer="Odoo S.A. " # Generate locale C.UTF-8 for postgres and general locale data ENV LANG C.UTF-8 diff --git a/12.0/Dockerfile b/12.0/Dockerfile index c2b1c83..0ff9df4 100644 --- a/12.0/Dockerfile +++ b/12.0/Dockerfile @@ -1,5 +1,5 @@ FROM debian:stretch -MAINTAINER Odoo S.A. +LABEL maintainer="Odoo S.A. " # Generate locale C.UTF-8 for postgres and general locale data ENV LANG C.UTF-8