Skip to content

Commit 8f333cc

Browse files
committed
fix(demos/manymove_industrial): pip --ignore-installed for asyncua
pip uninstall fails on cryptography 41.0.7 because the package is managed by apt and has no RECORD file. --ignore-installed skips the uninstall step so asyncua's newer cryptography dep can land alongside.
1 parent 66b043f commit 8f333cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

demos/manymove_industrial/opcua_bridge/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1111
ros-jazzy-ros2-medkit-msgs=0.4.0-1* \
1212
ros-jazzy-ros2-medkit-fault-reporter=0.4.0-1* \
1313
&& rm -rf /var/lib/apt/lists/* \
14-
&& pip install --no-cache-dir --break-system-packages \
14+
&& pip install --no-cache-dir --break-system-packages --ignore-installed \
1515
"asyncua==1.1.5"
1616

1717
WORKDIR /opt/opcua_bridge

0 commit comments

Comments
 (0)