docker.py 406 B

1234567891011121314
  1. from __future__ import annotations
  2. from ..core.module import Module
  3. from ..core.registry import registry
  4. class DockerModule(Module):
  5. """Module for managing Docker configurations and files."""
  6. name: str = "docker"
  7. description: str = "Manage Docker configurations and files"
  8. files: list[str] = ["Dockerfile", "dockerfile", ".dockerignore"]
  9. # Register the module
  10. registry.register(DockerModule)