added rabbitmq

This commit is contained in:
2025-10-25 20:24:06 +03:00
parent d900b0e23f
commit 1d0ee54b1f
4 changed files with 40 additions and 22 deletions

View File

@@ -1,5 +1,7 @@
FROM pennylaneai/pennylane:latest-lightning-qubit
WORKDIR /app
COPY . .
COPY ./source ./source
COPY ./main.py ./
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "app.py"]
CMD ["python", "main.py"]