Skip to content

Commit 2f9f0fc

Browse files
committed
Fix images: Manual backporting by extension
1 parent 0e007b4 commit 2f9f0fc

File tree

5 files changed

+19
-3
lines changed

5 files changed

+19
-3
lines changed

base/3.10.10.Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ COPY --from=glfsi /usr/local /usr/local
8282
USER root
8383

8484
RUN dpkgArch="$(dpkg --print-architecture)" \
85+
## Unminimise if the system has been minimised
86+
&& if [ $(command -v unminimize) ]; then \
87+
yes | unminimize; \
88+
fi \
8589
&& apt-get update \
8690
&& apt-get -y install --no-install-recommends \
8791
bash-completion \

base/3.10.9.Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,9 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
114114
&& if [ -z "$PYTHON_VERSION" ]; then \
115115
apt-get -y install --no-install-recommends \
116116
python3-dev \
117-
python3-distutils \
117+
## Install Python package installer
118+
## (dep: python3-distutils, python3-setuptools and python3-wheel)
119+
python3-pip \
118120
## Install venv module for python3
119121
python3-venv; \
120122
## make some useful symlinks that are expected to exist

base/3.11.0.Dockerfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,10 @@ COPY --from=glfsi /usr/local /usr/local
7878
USER root
7979

8080
RUN dpkgArch="$(dpkg --print-architecture)" \
81+
## Unminimise if the system has been minimised
82+
&& if [ $(command -v unminimize) ]; then \
83+
yes | unminimize; \
84+
fi \
8185
&& apt-get update \
8286
&& apt-get -y install --no-install-recommends \
8387
bash-completion \
@@ -114,7 +118,9 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
114118
&& if [ -z "$PYTHON_VERSION" ]; then \
115119
apt-get -y install --no-install-recommends \
116120
python3-dev \
117-
python3-distutils \
121+
## Install Python package installer
122+
## (dep: python3-distutils, python3-setuptools and python3-wheel)
123+
python3-pip \
118124
## Install venv module for python3
119125
python3-venv; \
120126
## make some useful symlinks that are expected to exist

base/3.11.1.Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ COPY --from=glfsi /usr/local /usr/local
8282
USER root
8383

8484
RUN dpkgArch="$(dpkg --print-architecture)" \
85+
## Unminimise if the system has been minimised
86+
&& if [ $(command -v unminimize) ]; then \
87+
yes | unminimize; \
88+
fi \
8589
&& apt-get update \
8690
&& apt-get -y install --no-install-recommends \
8791
bash-completion \

scipy/3.10.10.Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
9090
ipympl\
9191
ipywidgets \
9292
matplotlib \
93-
#numba \
93+
numba \
9494
numexpr \
9595
numpy \
9696
pandas \

0 commit comments

Comments
 (0)