From 1ddd4ba85c0739948778debc78fe0ada24a5ed4e Mon Sep 17 00:00:00 2001 From: Trey Smith Date: Thu, 1 Aug 2024 07:28:48 -0700 Subject: [PATCH] pano.Dockerfile: remove redundant install of pip; make style more consistent --- pano/docker/pano.Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pano/docker/pano.Dockerfile b/pano/docker/pano.Dockerfile index 8705e2a7..80017faa 100644 --- a/pano/docker/pano.Dockerfile +++ b/pano/docker/pano.Dockerfile @@ -22,15 +22,14 @@ RUN apt-get update \ && rm -rf /var/lib/apt/lists/* # Install Jupyter explicitly first -RUN pip3 install --no-cache-dir --upgrade pip && \ - pip3 install --no-cache-dir jupyter +RUN pip3 install --no-cache-dir --upgrade pip \ + && pip3 install --no-cache-dir jupyter # Install other Python packages: jupyter package needs to be installed before attempting to build pyshtools # - pandas: pulled in as pyshtools dependency but install breaks if not mentioned explicitly (?) # - pyshtools: used during Pannellum multires generation # - snakemake: modern build system based on Python, manages stitching workflows -RUN pip3 install --no-cache-dir --upgrade pip \ - && pip3 install --no-cache-dir \ +RUN pip3 install --no-cache-dir \ --ignore-installed PyYAML \ pandas \ pulp==2.7 \