@@ -18,6 +18,7 @@ RUN apt-get update && \
18
18
fonts-nanum \
19
19
fonts-nanum-coding \
20
20
fonts-nanum-extra \
21
+ pdsh \
21
22
gfortran \
22
23
htop \
23
24
ffmpeg \
@@ -125,18 +126,20 @@ RUN /opt/conda/bin/python3 -m pip install --no-cache-dir \
125
126
typeguard==2.11.1 \
126
127
python-language-server[all] \
127
128
matplotlib==3.4.1
128
- ENV SCIPY_VERSION 1.6.3
129
+ ENV SCIPY_VERSION 1.7.1
129
130
# Install scipy
130
131
RUN cd /tmp && \
131
132
git clone --branch=v${SCIPY_VERSION} --depth=1 https://github.com/scipy/scipy.git scipy && \
132
133
cd scipy && \
133
- git checkout -b v${SCIPY_VERSION} && \
134
+ git checkout -b v${SCIPY_VERSION} && \
135
+ git submodule update --init && \
134
136
cp site.cfg.example site.cfg && \
135
137
python3 -m pip install -U --no-cache-dir \
136
- numpy==1.20.2 \
137
- pandas==1.2.4 \
138
- scikit-learn==0.24.1 \
139
- hypothesis==6.8.5 \
138
+ numpy==1.21.1 \
139
+ pandas==1.3.3 \
140
+ pythran \
141
+ scikit-learn==1.0 \
142
+ hypothesis==6.23.2 \
140
143
python-lsp-server \
141
144
&& \
142
145
python3 setup.py install
@@ -158,9 +161,9 @@ RUN git clone https://github.com/aristocratos/bashtop.git && \
158
161
cd bashtop && \
159
162
make install
160
163
161
- RUN curl -fL https://github.com/cdr/code-server/releases/download/v3.11 .0/code-server-3.11 .0-linux-amd64.tar.gz | tar -C /usr/local/lib -xz && \
162
- mv /usr/local/lib/code-server-3.11 .0-linux-amd64 /usr/local/lib/code-server-3.11 .0 && \
163
- ln -s /usr/local/lib/code-server-3.11 .0/bin/code-server /usr/local/bin/code-server
164
+ RUN curl -fL https://github.com/cdr/code-server/releases/download/v3.12 .0/code-server-3.12 .0-linux-amd64.tar.gz | tar -C /usr/local/lib -xz && \
165
+ mv /usr/local/lib/code-server-3.12 .0-linux-amd64 /usr/local/lib/code-server-3.12 .0 && \
166
+ ln -s /usr/local/lib/code-server-3.12 .0/bin/code-server /usr/local/bin/code-server
164
167
165
168
# Install Open MPI
166
169
RUN mkdir /tmp/openmpi && \
@@ -237,7 +240,5 @@ LABEL ai.backend.kernelspec="1" \
237
240
ai.backend.runtime-path="/opt/conda/bin/python3" \
238
241
ai.backend.service-ports="ipython:pty:3000,jupyter:http:8091,jupyterlab:http:8090,vscode:http:8180,tensorboard:http:6006,mlflow-ui:preopen:5000,nniboard:preopen:8080"
239
242
240
- RUN python3 -m spacy download en_core_web_sm && \
241
- python3 -m spacy project clone pipelines/tagger_parser_predicted_annotations
242
243
WORKDIR /home/work
243
244
# vim: ft=dockerfile
0 commit comments