OxalisCommunity / oxalis

Oxalis - PEPPOL Access Point open source implementation - Core component
Other
124 stars 90 forks source link

Split docker image in generic base and default #441

Closed darklajid closed 4 years ago

darklajid commented 4 years ago

The current image makes some assumptions that are hard to undo downstream, namely the EXPOSE and VOLUME lines (and to some degree: The ENTRYPOINT). By splitting the file into a binary base image and a default configuration derived by it, downstream can use

FROM difi/oxalis-base

in the future to customize the distribution further, while current users of the difi/oxalis image will see exactly the same behavior as today.

Fixes #440

klakegg commented 4 years ago

Thank you for your contribution.