You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 922 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # Minimal Dora Docker Environment
  2. This Dockerfile provides a minimal environment for running Dora applications with Python and uv package manager.
  3. ## What's Included
  4. - Python 3.12
  5. - Rust (required for Dora)
  6. - uv package manager
  7. - Latest Dora release
  8. ## Building the Image
  9. ```bash
  10. docker build . -t dora-minimal
  11. ```
  12. ## Running the Container
  13. ```bash
  14. docker run -it --rm dora-minimal
  15. ```
  16. ## Running not in interactive
  17. ```bash
  18. docker run --rm dora-minimal dora --help
  19. ```
  20. ## Running with privilege as well as USB connection
  21. ```bash
  22. docker run --rm --device=/dev/ttyUSB0 dora-minimal dora --help
  23. ```
  24. ## Usage
  25. Once inside the container, you can:
  26. - Run Dora commands: `dora --help`
  27. - Use uv for package management: `uv install numpy`
  28. - Develop and test your Dora applications
  29. This container is designed to provide a consistent environment for Dora development without requiring complex setup on the host machine.