How can I best indicate that there are multiple authors/maintainers of a docker image built using a Dockerfile
? If I include multiple separate MAINTAINER
commands, only the last one seems to take effect.
MAINTAINER Me Myself "myself@example.com"
MAINTAINER My Colleague "mycolleague@example.com"
Only mycolleague
shows up in the output of docker inspect
.
Should I use a comma delimited list in a single MAINTAINER
line? Is wanting to list two maintainers a boondoggle and I should just armwrestle my colleague to see whose email we put in the file?