fix container build for tts

This commit is contained in:
2026-05-22 14:43:32 -04:00
parent 2e162c928a
commit 6fce25ffa2
3 changed files with 14 additions and 1 deletions
+6 -1
View File
@@ -1,10 +1,15 @@
FROM ghcr.io/astral-sh/uv:python3.13-alpine
FROM python:3.13-slim
# Install uv
RUN pip install --no-cache-dir uv
# Copy the project into the image
COPY vibe_bot /app
COPY uv.lock /app
COPY .python-version /app
COPY pyproject.toml /app
COPY kokoro-v1.0.onnx /app/kokoro-v1.0.onnx
COPY voices-v1.0.bin /app/voices-v1.0.bin
# Disable development dependencies
ENV UV_NO_DEV=1