Subida de código

This commit is contained in:
Root
2025-05-30 19:09:28 +02:00
parent 31208a52ba
commit faa7458439
32 changed files with 1375 additions and 70 deletions

View File

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