Skip to content

Commit

Permalink
upgrading pip in 2.11.0 arm devel dockerfiles (according to 2.12 and …
Browse files Browse the repository at this point in the history
…2.13)
  • Loading branch information
lreiher committed Aug 17, 2023
1 parent dab2596 commit 1b4b4db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,14 @@ RUN apt-get update && apt-get install -y \
libblas-dev \
liblapack-dev

RUN python3 -m pip --no-cache-dir install \
RUN python3 -m pip install --upgrade pip && \
python3 -m pip --no-cache-dir install \
Pillow \
tb-nightly \
h5py \
matplotlib \
mock \
'numpy<1.19.0' \
numpy \
scipy \
scikit-learn \
pandas \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,14 @@ RUN apt-get update && apt-get install -y \
libblas-dev \
liblapack-dev

RUN python3 -m pip --no-cache-dir install \
RUN python3 -m pip install --upgrade pip && \
python3 -m pip --no-cache-dir install \
Pillow \
tb-nightly \
h5py \
matplotlib \
mock \
'numpy<1.19.0' \
numpy \
scipy \
scikit-learn \
pandas \
Expand Down

0 comments on commit 1b4b4db

Please sign in to comment.