current org

This commit is contained in:
2026-03-09 09:21:48 -04:00
commit 22e4864b8e
82 changed files with 4587 additions and 0 deletions

34
tasks/FRE-19.yaml Normal file
View File

@@ -0,0 +1,34 @@
---
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
---