FROM python:3.9-slim WORKDIR /app # Instalar dependencias RUN pip install pika COPY app.py . CMD ["python", "app.py"]