This is an automated email from the ASF dual-hosted git repository.
wohali pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb-docker.git
The following commit(s) were added to refs/heads/master by this push:
new 702df2a Update Dockerfile (#127)
702df2a is described below
commit 702df2a38243609829b5a3c995fe0eda7ded93a5
Author: John Fitzpatrick <[email protected]>
AuthorDate: Tue Jan 8 15:06:35 2019 +1100
Update Dockerfile (#127)
According to the Dockerfile reference, MAINTAINER has been deprecated
in favour of using the LABEL instruction. This patch updates the file
to use that instruction instead.
Fixes #126.
---
2.3.0/Dockerfile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/2.3.0/Dockerfile b/2.3.0/Dockerfile
index fcf175b..ad1d3d3 100644
--- a/2.3.0/Dockerfile
+++ b/2.3.0/Dockerfile
@@ -12,7 +12,7 @@
FROM debian:stretch-slim
-MAINTAINER CouchDB Developers [email protected]
+LABEL maintainer="CouchDB Developers [email protected]"
# Add CouchDB user account to make sure the IDs are assigned consistently
RUN groupadd -g 5984 -r couchdb && useradd -u 5984 -d /opt/couchdb -g couchdb
couchdb