Files
fulloch/Dockerfile
T
Liam PettigrewandClaude Opus 4.5 464d049433 init
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-23 17:06:44 +11:00

18 lines
317 B
Docker
Executable File

FROM python:3.12-slim
WORKDIR /app
# Install dependencies first to leverage Docker cache
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy application code
COPY app.py .
COPY tools/ tools/
COPY utils/ utils/
COPY wav/ wav/
COPY audio/ audio/
# Run the app
CMD ["python", "app.py"]