Spaces:
Sleeping
Sleeping
| FROM debian:bullseye | |
| # Cài espeak-ng, ffmpeg, Python | |
| RUN apt-get update && apt-get install -y \ | |
| python3 python3-pip \ | |
| espeak-ng ffmpeg \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY app.py . | |
| COPY requirements.txt . | |
| RUN pip3 install -r requirements.txt | |
| EXPOSE 7860 | |
| CMD ["python3", "app.py"] |