Files
transcripcion-whisper/splitter/Dockerfile

11 lines
175 B
Docker
Raw Normal View History

2025-05-30 19:09:28 +02:00
FROM python:3.9-slim
WORKDIR /app
# Instalar dependencias
RUN apt-get update && apt-get install -y ffmpeg
RUN pip install pika pydub
COPY app.py .
CMD ["python", "app.py"]