Files
local_quantum_simulator/Dockerfile_build/Dockerfile
DeOwl 96548e60ea v0.1.0
Changes:
- added rabbitmq hearbeat, consumer and publisher
- fixed vqe to run with rabbitmq
- added frontend via fasthtml
- added proper .env configuration
2026-05-14 13:27:33 +03:00

10 lines
219 B
Docker

FROM pennylaneai/pennylane:v0.45.0-lightning-qubit
WORKDIR /app
COPY ./requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY ./source ./source
ENTRYPOINT ["python", "./source/main.py"]