From 56ed80b83a603777a27e6a1e42046357ada441f2 Mon Sep 17 00:00:00 2001 From: DeOwl Date: Mon, 16 Mar 2026 22:14:26 +0300 Subject: [PATCH] added dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ceff221 --- /dev/null +++ b/Dockerfile @@ -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"]