tts-voice-creator-clone-and.../Dockerfile
mARTin-B78 d4b176e4d1 Bake VERSION into Docker image so About page shows correct version
Without COPY VERSION, _read_version() fell back to "0.0.0". The volume
mount is a runtime override; the baked-in copy is the reliable baseline.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-10 04:03:10 +02:00

41 lines
2.1 KiB
Docker

# ─────────────────────────────────────────────────────────────────────────────
# TTS Voice Creator - Clone and Design — Docker image (ARM64 / aarch64 compatible)
#
# Web app (FastAPI + WaveSurfer.js) — no VNC, no Qt, no X11.
# Accessible on port 7890 via any browser.
# ─────────────────────────────────────────────────────────────────────────────
FROM python:3.11-slim-bookworm
ENV DEBIAN_FRONTEND=noninteractive
ENV PYTHONUNBUFFERED=1
# ── System packages ───────────────────────────────────────────────────────────
RUN apt-get update && apt-get install -y --no-install-recommends \
ffmpeg \
curl \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# ── Python dependencies ───────────────────────────────────────────────────────
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
# ── Application ───────────────────────────────────────────────────────────────
WORKDIR /app
COPY server.py .
COPY CHANGELOG.md .
COPY VERSION .
COPY core/ core/
COPY routes/ routes/
COPY static/ static/
# ── Runtime user ──────────────────────────────────────────────────────────────
RUN mkdir -p /voices/active_voices /voices/hidden_voices /home/app/.config/tts-voice-creator && \
useradd -m -s /bin/bash app && \
chown -R app:app /app /voices /home/app
USER app
EXPOSE 7890
CMD ["python3", "server.py"]