Skip to content

Commit

Permalink
Fix mbedos docker build (fixes "ERROR: Cannot uninstall PyYAML. It is…
Browse files Browse the repository at this point in the history
… a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.") (#9529)

Co-authored-by: Andrei Litvin <[email protected]>
  • Loading branch information
2 people authored and pull[bot] committed Sep 23, 2021
1 parent 70545b4 commit 8705da2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integrations/docker/images/chip-build-mbed-os/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN set -x \
# Install Python modules
RUN set -x \
&& pip3 install --no-cache-dir -U mbed-cli mbed-tools \
&& pip3 install --no-cache-dir -r /opt/mbed-os/requirements.txt \
&& pip3 install --no-cache-dir --ignore-installed -r /opt/mbed-os/requirements.txt \
&& : # last line

# ------------------------------------------------------------------------------
Expand Down

0 comments on commit 8705da2

Please sign in to comment.