Skip to content

Commit 5ee16b7

Browse files
authored
Fix docker installation for cirq_pre_release image (#7240)
Need to use `pip install --upgrade` to get the latest dev-release of cirq especially if stable cirq was already installed before. Follow-up to #7213
1 parent 0684419 commit 5ee16b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ RUN pip3 install cirq "qcs-sdk-python<=0.21.12"
2525
##cirq pre_release image
2626
FROM cirq_base AS cirq_pre_release
2727
# TODO: adjust after the fix of https://github.com/rigetti/qcs-sdk-rust/issues/531
28-
RUN pip3 install cirq~=1.0.dev "qcs-sdk-python<=0.21.12"
28+
RUN pip3 install --upgrade cirq~=1.0.dev "qcs-sdk-python<=0.21.12"

0 commit comments

Comments
 (0)