We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cc14f6 commit a11be93Copy full SHA for a11be93
1 file changed
docker/Dockerfile
@@ -18,11 +18,9 @@ ENV PATH="/python/venv/bin:$PATH"
18
COPY docker/requirements.txt .
19
RUN pip install -r requirements.txt
20
21
-# todo: remove github token once repos are public
22
-ARG GITHUB_TOKEN
23
-RUN pip install git+https://${GITHUB_TOKEN}@github.com/OpenQuantumDesign/oqd-compiler-infrastructure.git
24
-RUN pip install git+https://${GITHUB_TOKEN}@github.com/OpenQuantumDesign/oqd-core.git
25
-RUN pip install git+https://${GITHUB_TOKEN}@github.com/OpenQuantumDesign/oqd-analog-emulator.git
+RUN pip install oqd-compiler-infrastructure
+RUN pip install oqd-core
+RUN pip install oqd-analog-emulator
26
27
28
########################################################################################
0 commit comments