Skip to content

Commit

Permalink
pano.Dockerfile: remove redundant install of pip; make style more con…
Browse files Browse the repository at this point in the history
…sistent
  • Loading branch information
trey0 committed Aug 1, 2024
1 parent 3b3ad97 commit 1ddd4ba
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pano/docker/pano.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit 1ddd4ba

Please sign in to comment.