Docker Container Deployment

Run VIKI inside isolated Docker containers with multi-stage build targets.

1. Build Docker Container

Use Docker Compose to build the multi-stage image (`slim` for core or `full` for ML extras).

docker compose build

2. Run Interactive Container

docker compose run --rm -it viki

3. Build Target Images Manually

# Slim core image:
docker build --target=slim -t viki:slim .

# Full image with ML packages:
docker build --target=full -t viki:latest .