11 lines
175 B
Docker
11 lines
175 B
Docker
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"] |