Problem
Running the demos and AI reference kits in this repository requires installing several dependencies such as OpenVINO, Python packages, and system libraries. For new users, environment setup can sometimes be difficult and may lead to inconsistent results across systems.
Proposed Solution
Provide Dockerfiles for running demos and reference kits in a consistent and reproducible environment.
For example:
docker/
Dockerfile.demo
Dockerfile.reference_kits
Example usage:
docker build -t openvino-demo .
docker run --rm -it openvino-demo
The container could include:
- OpenVINO runtime
- Python dependencies
- Basic demo requirements
Benefits
- Simplifies environment setup
- Improves reproducibility
- Makes demos easier to run for new contributors
- Useful for CI/CD and cloud environments
Additional Context
If this proposal sounds reasonable, I would be happy to work on implementing the Dockerfiles and submit a PR.