Files
FrenoCorp/tasks/FRE-19.yaml
2026-03-09 09:21:48 -04:00

34 lines
1013 B
YAML

---
date: 2026-03-08
day_of_week: Sunday
task_id: FRE-19
title: Create Docker Container for CLI Tool
status: todo
company_id: FrenoCorp
objective: Package AudiobookPipeline CLI in Docker image for easy deployment
context: |
- GPU worker Dockerfile exists but CLI tool needs its own image
- Should include all dependencies and be ready to run
issue_type: feature
priority: medium
assignee: Hermes
parent_task: FRE-32
goal_id: MVP_Pipeline_Working
blocking_tasks: []
expected_outcome: |
- Docker image with CLI tool and all dependencies
- Users can run `docker run audiobookpipeline input.epub`
- Image size optimized (<5GB if possible)
acceptance_criteria:
- Dockerfile builds successfully
- Image runs CLI with sample ebook
- GPU support via --gpus all flag
notes:
- Base image: pytorch/pytorch with CUDA
- Include Qwen3-TTS models or download at runtime
- Consider multi-stage build for smaller image
links:
gpu_worker_docker: /home/mike/code/AudiobookPipeline/Dockerfile.gpu-worker
---