Documint is built off of the standard fusionapp/base container.
Pull
$ docker pull fusionapp/base
Run the base container to build the necessary wheels.
$ docker run --rm -ti -v "${PWD}:/application" -v "${PWD}/wheelhouse:/wheelhouse" fusionapp/baseThe built wheels will be placed in the "wheelhouse" directory at the root of the repository.
Copy the clj-neon uberjar wheel into bin.
$ cp .../clj-neon/target/uberjar/clj-neon-*-standalone.jar bin/clj-neon.jar
Place any needed fonts in fonts/.
Build the Documint container.
$ docker build --tag=fusionapp/documint --file=docker/documint.docker .
You only need to rerun steps 2 and 5 to build a container from modified source.