Files
transcripcion-whisper/whisper-distributed/receiver/Dockerfile

10 lines
121 B
Docker
Raw Normal View History

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