Skip to content

Commit 97f4473

Browse files
committed
clean up
1 parent 20fe840 commit 97f4473

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

vendor/ngc-pytorch/Dockerfile.21.07-py3

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ RUN apt-get update && \
1818
fonts-nanum \
1919
fonts-nanum-coding \
2020
fonts-nanum-extra \
21+
pdsh \
2122
gfortran \
2223
htop \
2324
ffmpeg \
@@ -125,18 +126,20 @@ RUN /opt/conda/bin/python3 -m pip install --no-cache-dir \
125126
typeguard==2.11.1 \
126127
python-language-server[all] \
127128
matplotlib==3.4.1
128-
ENV SCIPY_VERSION 1.6.3
129+
ENV SCIPY_VERSION 1.7.1
129130
# Install scipy
130131
RUN cd /tmp && \
131132
git clone --branch=v${SCIPY_VERSION} --depth=1 https://github.com/scipy/scipy.git scipy && \
132133
cd scipy && \
133-
git checkout -b v${SCIPY_VERSION} && \
134+
git checkout -b v${SCIPY_VERSION} && \
135+
git submodule update --init && \
134136
cp site.cfg.example site.cfg && \
135137
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 \
140143
python-lsp-server \
141144
&& \
142145
python3 setup.py install
@@ -158,9 +161,9 @@ RUN git clone https://github.com/aristocratos/bashtop.git && \
158161
cd bashtop && \
159162
make install
160163

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
164167

165168
# Install Open MPI
166169
RUN mkdir /tmp/openmpi && \
@@ -237,7 +240,5 @@ LABEL ai.backend.kernelspec="1" \
237240
ai.backend.runtime-path="/opt/conda/bin/python3" \
238241
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"
239242

240-
RUN python3 -m spacy download en_core_web_sm && \
241-
python3 -m spacy project clone pipelines/tagger_parser_predicted_annotations
242243
WORKDIR /home/work
243244
# vim: ft=dockerfile

0 commit comments

Comments
 (0)