File tree 5 files changed +19
-3
lines changed
5 files changed +19
-3
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ COPY --from=glfsi /usr/local /usr/local
82
82
USER root
83
83
84
84
RUN dpkgArch="$(dpkg --print-architecture)" \
85
+ # # Unminimise if the system has been minimised
86
+ && if [ $(command -v unminimize) ]; then \
87
+ yes | unminimize; \
88
+ fi \
85
89
&& apt-get update \
86
90
&& apt-get -y install --no-install-recommends \
87
91
bash-completion \
Original file line number Diff line number Diff line change @@ -114,7 +114,9 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
114
114
&& if [ -z "$PYTHON_VERSION" ]; then \
115
115
apt-get -y install --no-install-recommends \
116
116
python3-dev \
117
- python3-distutils \
117
+ # # Install Python package installer
118
+ # # (dep: python3-distutils, python3-setuptools and python3-wheel)
119
+ python3-pip \
118
120
# # Install venv module for python3
119
121
python3-venv; \
120
122
# # make some useful symlinks that are expected to exist
Original file line number Diff line number Diff line change @@ -78,6 +78,10 @@ COPY --from=glfsi /usr/local /usr/local
78
78
USER root
79
79
80
80
RUN dpkgArch="$(dpkg --print-architecture)" \
81
+ # # Unminimise if the system has been minimised
82
+ && if [ $(command -v unminimize) ]; then \
83
+ yes | unminimize; \
84
+ fi \
81
85
&& apt-get update \
82
86
&& apt-get -y install --no-install-recommends \
83
87
bash-completion \
@@ -114,7 +118,9 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
114
118
&& if [ -z "$PYTHON_VERSION" ]; then \
115
119
apt-get -y install --no-install-recommends \
116
120
python3-dev \
117
- python3-distutils \
121
+ # # Install Python package installer
122
+ # # (dep: python3-distutils, python3-setuptools and python3-wheel)
123
+ python3-pip \
118
124
# # Install venv module for python3
119
125
python3-venv; \
120
126
# # make some useful symlinks that are expected to exist
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ COPY --from=glfsi /usr/local /usr/local
82
82
USER root
83
83
84
84
RUN dpkgArch="$(dpkg --print-architecture)" \
85
+ # # Unminimise if the system has been minimised
86
+ && if [ $(command -v unminimize) ]; then \
87
+ yes | unminimize; \
88
+ fi \
85
89
&& apt-get update \
86
90
&& apt-get -y install --no-install-recommends \
87
91
bash-completion \
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ RUN dpkgArch="$(dpkg --print-architecture)" \
90
90
ipympl\
91
91
ipywidgets \
92
92
matplotlib \
93
- # numba \
93
+ numba \
94
94
numexpr \
95
95
numpy \
96
96
pandas \
You can’t perform that action at this time.
0 commit comments