j13k opened a new pull request #127: Update Dockerfile
URL: https://github.com/apache/couchdb-docker/pull/127
 
 
   ## Overview
   
   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. 
   
   ## Testing recommendations
   
   Perform a standard build, then `docker inspect` the image.
   
   Expected output (edited):
   
   ```
   docker inspect apache/couchdb
   ```
   
   ```json
           ...
           "ContainerConfig": {
               ...
               "Labels": {
                   "maintainer": "CouchDB Developers [email protected]"
               }
           },
           ...
   ```
   
   Expected output (filtered with `jq`):
   
   ```
   docker inspect apache/couchdb | jq '.[]["ContainerConfig"]["Labels"]'
   ```
   
   ```json
   {
     "maintainer": "CouchDB Developers [email protected]"
   }
   ```
   
   ## GitHub issue number
   
   Fixes #126.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to