@@ -108,8 +108,7 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
108
108
109
109
RUN apt-get update && \
110
110
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} \
113
112
libnvinfer-dev=${LIBNVINFER}+cuda${CUDA} \
114
113
libnvinfer-plugin-dev=${LIBNVINFER}+cuda${CUDA} \
115
114
&& \
@@ -167,7 +166,7 @@ COPY ./numpy-1.18.5-cp36-cp36m-manylinux2010_x86_64.whl /tmp
167
166
COPY ./pandas-1.0.4+4.g29edbab4a-cp36-cp36m-linux_x86_64.whl /tmp
168
167
169
168
RUN python3 -m pip install --no-cache-dir --upgrade -Iv \
170
- Cython==0.29.20 \
169
+ Cython==0.29.20 \
171
170
/tmp/numpy-1.18.5-cp36-cp36m-manylinux2010_x86_64.whl \
172
171
/tmp/pandas-1.0.4+4.g29edbab4a-cp36-cp36m-linux_x86_64.whl \
173
172
tornado==6.0.4 \
@@ -186,25 +185,26 @@ RUN git clone --recursive https://github.com/bodono/scs-python.git && \
186
185
python setup.py install --scs --gpu
187
186
188
187
RUN python3 -m pip install pip --no-cache-dir \
189
- Cartopy==0.18.0 \
188
+ Cartopy==0.18.0 \
190
189
notebook==6.0.3
191
190
192
191
WORKDIR /tmp
193
192
COPY ./requirements.20.08.txt /tmp
194
193
RUN python3 -m pip install --no-cache-dir --upgrade -r requirements.20.08.txt && \
195
194
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 \
197
197
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 && \
201
201
rm -f /tmp/*.whl /tmp/requirements.20.08.txt
202
202
203
203
# install NLP packages *mecab-ko & khai*
204
204
RUN apt-get update && \
205
205
apt-get install -y \
206
206
openjdk-8-jdk \
207
- automake \
207
+ automake \
208
208
&& \
209
209
cd /tmp && \
210
210
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 && \
236
236
libgstreamer1.0-dev \
237
237
libgstreamer-plugins-base1.0-dev \
238
238
libgtk-3-dev \
239
- libtbb-dev \
239
+ libtbb-dev \
240
240
libatlas-base-dev \
241
241
libdc1394-22-dev \
242
242
libxvidcore-dev \
@@ -380,13 +380,9 @@ RUN jupyter nbextensions_configurator enable && \
380
380
jupyter nbextension enable --py --sys-prefix widgetsnbextension && \
381
381
jupyter serverextension enable --py jupyterlab --sys-prefix && \
382
382
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 && \
386
383
jupyter labextension install --no-build @krassowski/jupyterlab-lsp && \
387
384
jupyter serverextension enable --py jupyter_lsp && \
388
385
jupyter labextension install --no-build @jupyterlab/toc && \
389
- # jupyter labextension install @jupyterlab/hdf5
390
386
jupyter nbextension enable execute_time/ExecuteTime && \
391
387
jupyter nbextension enable toc2/main && \
392
388
jupyter labextension install @pyviz/jupyterlab_pyviz && \
0 commit comments