Note: For manual installation without Docker, refer to the section below.
Follow the official Docker installation guide.
docker build . --tag mmore
To build for CPU-only platforms (results in a smaller image size):
docker build --build-arg PLATFORM=cpu -t mmore .
docker run -it -v ./test_data:/app/test_data mmore
Note: The test_data
folder is mapped to /app/test_data
inside the container, corresponding to the default path in examples/process_config.yaml
.