This repo contains a Dockerfile for running the BioModelAnalyzer tool. It is published to the Github registry for easy use.
To use the published image, run
docker run -it --platform linux/amd64 ghcr.io/reubenj/bmaimage:releaseYou should see the help menu of the tool, as below.
Usage: BioCheckConsole.exe -model input_analysis_file.json
-modelsdir model_directory
-log
-loglevel n
...If you would like to try changes locally, you can build the image with the following command
docker build --platform linux/amd64 . -t bma:1.14Note that as of 10/10/2025, linux/arm64 is not supported, so stick with amd for now.
To run, use
docker run -it --platform linux/amd64 bma:1.14