Morpher is a simple microservice that converts XML strings to JSON.
Originally intended to be a reference project, additional methods have been added to handle BIS formatted documents, such as invoices.
Using the Flask (development) server:
docker build --target development -t morpher . && docker run -p 8888:8888 morpher
Using the Gunicorn (production) server:
docker build -t morpher . && docker run -p 8888:8888 morpher