Copy scripts/ directory into Docker container

The Dockerfile was missing COPY scripts/ which caused voices-xtts
to fail when trying to run download_samples.sh

🦝 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Russell Ballestrini 2025-11-09 09:52:57 -05:00
parent 2c6c1ad577
commit d6c9654816

View file

@ -34,6 +34,7 @@ RUN if [ "${USE_ROCM}" = "1" ]; then mv /app/requirements-rocm.txt /app/requirem
RUN --mount=type=cache,target=/root/.cache/pip pip install -r requirements.txt
COPY *.py *.sh *.default.yaml README.md LICENSE /app/
COPY scripts/ /app/scripts/
ARG PRELOAD_MODEL
ENV PRELOAD_MODEL=${PRELOAD_MODEL}