| |
| FROM ghcr.io/linuxserver/webtop:ubuntu-xfce |
|
|
| |
| ENV PORT=7860 |
| EXPOSE 7860 |
|
|
| |
| USER root |
|
|
| |
| RUN apt-get update && apt-get install -y \ |
| ffmpeg \ |
| python3-pip \ |
| python3-dev \ |
| curl \ |
| wget \ |
| git \ |
| firefox \ |
| && rm -rf /var/lib/apt/lists/* |
|
|
| |
| RUN pip3 install --no-cache-dir \ |
| yt-dlp \ |
| google-generativeai \ |
| edge-tts \ |
| pysubs2 \ |
| gradio |
|
|
| |
| RUN curl -L --output cloudflared.deb https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb && \ |
| dpkg -i cloudflared.deb && \ |
| rm cloudflared.deb |
|
|
| |
| USER 1000 |
| WORKDIR /config |
|
|
| |
| ENV TITLE=AI_Dubbing_Studio |