**This is a Docker image to build OpenMono applications. Can be used for Continous Integration or alike.
To compile a mono app with this container, to must mount the repo dir inside the container and point a environment variable to the mount point.
Say we have our app code checkout at /mycode
, then to compile the code with Docker use this:
$ docker run -tie APP_DIR=/mycode -v /mycode:/mycode
This will mount /mycode inside the container, and the containerøs CMD
script will know ehere it is using the APP_DIR
variable.