From 87a78a584fd52cd0ee39a49fd3d8b032eec2dafb Mon Sep 17 00:00:00 2001 From: Kalyan Sriram Date: Wed, 31 Aug 2022 09:34:24 -0500 Subject: [PATCH] base: fix pip install quotation Pip installation version was not being quoted, causing ">=" to be treated as a shell output redirect rather than a version. --- docker/Dockerfile_base-bionic | 2 +- docker/Dockerfile_base-focal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile_base-bionic b/docker/Dockerfile_base-bionic index 4577501..6098422 100644 --- a/docker/Dockerfile_base-bionic +++ b/docker/Dockerfile_base-bionic @@ -63,7 +63,7 @@ RUN pip3 install wheel setuptools # Python 3 dependencies installed by pip RUN pip3 install argparse argcomplete coverage cerberus empy jinja2 kconfiglib \ - matplotlib==3.0.* numpy nunavut>=1.1.0 packaging pkgconfig pyros-genmsg pyulog \ + matplotlib==3.0.* numpy "nunavut>=1.1.0" packaging pkgconfig pyros-genmsg pyulog \ pyyaml requests serial six toml psutil pyulog wheel jsonschema # manual ccache setup diff --git a/docker/Dockerfile_base-focal b/docker/Dockerfile_base-focal index 8676023..c43feda 100644 --- a/docker/Dockerfile_base-focal +++ b/docker/Dockerfile_base-focal @@ -63,7 +63,7 @@ RUN python3 -m pip install --upgrade pip wheel setuptools # Python 3 dependencies installed by pip RUN python3 -m pip install argparse argcomplete coverage cerberus empy jinja2 kconfiglib \ - matplotlib==3.0.* numpy nunavut>=1.1.0 packaging pkgconfig pyros-genmsg pyulog \ + matplotlib==3.0.* numpy "nunavut>=1.1.0" packaging pkgconfig pyros-genmsg pyulog \ pyyaml requests serial six toml psutil pyulog wheel jsonschema pynacl # manual ccache setup