Skip to content

Commit a11be93

Browse files
[fix] Remove private repo installation from Docker image
1 parent 0cc14f6 commit a11be93

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

docker/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,9 @@ ENV PATH="/python/venv/bin:$PATH"
1818
COPY docker/requirements.txt .
1919
RUN pip install -r requirements.txt
2020

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
21+
RUN pip install oqd-compiler-infrastructure
22+
RUN pip install oqd-core
23+
RUN pip install oqd-analog-emulator
2624

2725

2826
########################################################################################

0 commit comments

Comments
 (0)