Compare commits

...

2 Commits

Author SHA1 Message Date
290c4fada2 removed sesskey 2026-03-16 22:24:49 +03:00
56ed80b83a added dockerfile 2026-03-16 22:14:26 +03:00
3 changed files with 10 additions and 3 deletions

1
.gitignore vendored
View File

@@ -2,6 +2,7 @@
__pycache__/ __pycache__/
*.py[codz] *.py[codz]
*$py.class *$py.class
.sesskey
# C extensions # C extensions
*.so *.so

View File

@@ -1 +0,0 @@
af029f61-4c27-46bd-9c98-ed059d315b92

7
Dockerfile Normal file
View File

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