test parallel docker container

This commit is contained in:
2025-10-16 13:47:59 +03:00
parent db979c13d5
commit 1b7acff7f9
5 changed files with 78 additions and 0 deletions

5
dockerfile Normal file
View File

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