This commit is contained in:
2026-05-24 00:54:19 -04:00
parent 9ab0c1d45a
commit 0df03c9668
+3 -6
View File
@@ -4,12 +4,9 @@ FROM python:3.13-slim
RUN apt-get update && apt-get install -y --no-install-recommends portaudio19-dev && rm -rf /var/lib/apt/lists/* && 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
COPY pyproject.toml uv.lock .python-version /app/
COPY vibe_bot /app/vibe_bot
COPY kokoro-v1.0.onnx voices-v1.0.bin /app/
# Disable development dependencies
ENV UV_NO_DEV=1