Skip to content

Commit 3c9ae59

Browse files
authored
Update Dockerfile.base.20.09-py36-cuda11
1 parent 684ca56 commit 3c9ae59

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

commons/Dockerfile.base.20.09-py36-cuda11

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
108108

109109
RUN apt-get update && \
110110
apt-get install -y --no-install-recommends \
111-
libnvinfer${LIBNVINFER_MAJOR_VERSION}=${LIBNVINFER}+cuda${CUDA} \
112-
# libnvinfer-bin=${LIBNVINFER}+cuda${CUDA} \
111+
libnvinfer${LIBNVINFER_MAJOR_VERSION}=${LIBNVINFER}+cuda${CUDA} \
113112
libnvinfer-dev=${LIBNVINFER}+cuda${CUDA} \
114113
libnvinfer-plugin-dev=${LIBNVINFER}+cuda${CUDA} \
115114
&& \
@@ -167,7 +166,7 @@ COPY ./numpy-1.18.5-cp36-cp36m-manylinux2010_x86_64.whl /tmp
167166
COPY ./pandas-1.0.4+4.g29edbab4a-cp36-cp36m-linux_x86_64.whl /tmp
168167

169168
RUN python3 -m pip install --no-cache-dir --upgrade -Iv \
170-
Cython==0.29.20 \
169+
Cython==0.29.20 \
171170
/tmp/numpy-1.18.5-cp36-cp36m-manylinux2010_x86_64.whl \
172171
/tmp/pandas-1.0.4+4.g29edbab4a-cp36-cp36m-linux_x86_64.whl \
173172
tornado==6.0.4 \
@@ -186,25 +185,26 @@ RUN git clone --recursive https://github.com/bodono/scs-python.git && \
186185
python setup.py install --scs --gpu
187186

188187
RUN python3 -m pip install pip --no-cache-dir \
189-
Cartopy==0.18.0 \
188+
Cartopy==0.18.0 \
190189
notebook==6.0.3
191190

192191
WORKDIR /tmp
193192
COPY ./requirements.20.08.txt /tmp
194193
RUN python3 -m pip install --no-cache-dir --upgrade -r requirements.20.08.txt && \
195194
python3 -m pip install --no-cache-dir tensorflow_model_analysis && \
196-
python3 -m pip uninstall -y tensorboard tensorboard-plugin-wit tensorflow tensorflow-gpu \
195+
python3 -m pip uninstall -y \
196+
tensorboard tensorboard-plugin-wit tensorflow tensorflow-gpu \
197197
tensorflow-estimator tensorflow-addons tensorflow-datasets \
198-
tensorflow-gan tensorflow-hub tensorflow-metadata \
199-
tensorflow-probability tensorflow-text \
200-
tensorflow-model-analysis tensorflow-serving-api && \
198+
tensorflow-gan tensorflow-hub tensorflow-metadata \
199+
tensorflow-probability tensorflow-text \
200+
tensorflow-model-analysis tensorflow-serving-api && \
201201
rm -f /tmp/*.whl /tmp/requirements.20.08.txt
202202

203203
# install NLP packages *mecab-ko & khai*
204204
RUN apt-get update && \
205205
apt-get install -y \
206206
openjdk-8-jdk \
207-
automake \
207+
automake \
208208
&& \
209209
cd /tmp && \
210210
curl -LO https://bitbucket.org/eunjeon/mecab-ko/downloads/mecab-0.996-ko-0.9.2.tar.gz && \
@@ -236,7 +236,7 @@ RUN ln -s /usr/include/libv4l1-videodev.h /usr/include/linux/videodev.h && \
236236
libgstreamer1.0-dev \
237237
libgstreamer-plugins-base1.0-dev \
238238
libgtk-3-dev \
239-
libtbb-dev \
239+
libtbb-dev \
240240
libatlas-base-dev \
241241
libdc1394-22-dev \
242242
libxvidcore-dev \
@@ -380,13 +380,9 @@ RUN jupyter nbextensions_configurator enable && \
380380
jupyter nbextension enable --py --sys-prefix widgetsnbextension && \
381381
jupyter serverextension enable --py jupyterlab --sys-prefix && \
382382
jupyter labextension install --no-build @jupyter-widgets/jupyterlab-manager && \
383-
# git clone https://github.com/lambdalisue/jupyter-vim-binding vim_binding && \
384-
# jupyter nbextension enable /home/work/.jupyter/nbextension/vim_binding/vim_binding && \
385-
# jupyter labextension install --no-build @lckr/jupyterlab_variableinspector && \
386383
jupyter labextension install --no-build @krassowski/jupyterlab-lsp && \
387384
jupyter serverextension enable --py jupyter_lsp && \
388385
jupyter labextension install --no-build @jupyterlab/toc && \
389-
# jupyter labextension install @jupyterlab/hdf5
390386
jupyter nbextension enable execute_time/ExecuteTime && \
391387
jupyter nbextension enable toc2/main && \
392388
jupyter labextension install @pyviz/jupyterlab_pyviz && \

0 commit comments

Comments
 (0)