Simplificación de ficheros

This commit is contained in:
Root
2025-05-31 17:48:56 +02:00
parent 83b0597a66
commit 6f111e68a8
54 changed files with 105 additions and 966 deletions

10
unifier/Dockerfile Normal file
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"]