This is an automated email from the ASF dual-hosted git repository.
yzhao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mnemonic.git
The following commit(s) were added to refs/heads/master by this push:
new ec400ca MNEMONIC-746: MAINTAINER instruction in Dockerfile is
deprecated
ec400ca is described below
commit ec400ca3af4cd9ce5a95fa362f2d3f1a4b1447bb
Author: Xiaojin Jiao <[email protected]>
AuthorDate: Wed Jun 8 10:32:07 2022 -0700
MNEMONIC-746: MAINTAINER instruction in Dockerfile is deprecated
Signed-off-by: Xiaojin Jiao <[email protected]>
---
docker/docker-CentOS/Dockerfile | 2 +-
docker/docker-Fedora/Dockerfile | 2 +-
docker/docker-Ubuntu/Dockerfile | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docker/docker-CentOS/Dockerfile b/docker/docker-CentOS/Dockerfile
index 99a8868..8406608 100644
--- a/docker/docker-CentOS/Dockerfile
+++ b/docker/docker-CentOS/Dockerfile
@@ -16,7 +16,7 @@
#
FROM centos:8
-MAINTAINER Gang Wang ([email protected])
+LABEL maintainer="Gordon King ([email protected])"
RUN yum -y install epel-release
RUN yum -y update && yum -y groupinstall 'Development Tools' && \
diff --git a/docker/docker-Fedora/Dockerfile b/docker/docker-Fedora/Dockerfile
index 935da33..8d3c8d1 100644
--- a/docker/docker-Fedora/Dockerfile
+++ b/docker/docker-Fedora/Dockerfile
@@ -16,7 +16,7 @@
#
FROM fedora:34
-MAINTAINER Xiaojin Jiao ([email protected])
+LABEL maintainer="Xiaojin Jiao ([email protected])"
# update container
RUN dnf -y update && dnf clean all
diff --git a/docker/docker-Ubuntu/Dockerfile b/docker/docker-Ubuntu/Dockerfile
index 24e519b..518afa1 100644
--- a/docker/docker-Ubuntu/Dockerfile
+++ b/docker/docker-Ubuntu/Dockerfile
@@ -16,7 +16,7 @@
#
FROM ubuntu:21.10
-MAINTAINER Yanhui Zhao ([email protected])
+LABEL maintainer="Yanhui Zhao ([email protected])"
RUN apt-get -y update && apt-get install -y software-properties-common &&
add-apt-repository ppa:openjdk-r/ppa && apt-get -y update && \
apt-get install -y openjdk-17-jdk cmake check git pkg-config autoconf man
build-essential gcc g++ uuid-dev pandoc devscripts flex doxygen maven