1
1
# Lablup/Python-TensorFlow 1.14 Python 3.6
2
2
3
- FROM lablup/common-tensorflow:1.14-py36-cuda9 as tf-binary
4
- FROM lablup/common-base:19.06-py36-cuda9
3
+ FROM lablup/common-base:19.12-py36-cuda10
5
4
MAINTAINER Mario Cho
"[email protected] "
6
5
7
6
# Install ipython kernelspec
8
- RUN python3 -m ipykernel install --display-name "TensorFlow 1.14 on Python 3.6 (CUDA 9 .0)" && \
7
+ RUN python3 -m ipykernel install --display-name "TensorFlow 1.15 on Python 3.6 (CUDA 10 .0)" && \
9
8
cat /usr/local/share/jupyter/kernels/python3/kernel.json
10
9
11
- COPY --from=tf-binary /tmp/tensorflow_pkg/tensorflow-*.whl /tmp
12
-
13
10
RUN python3 -m pip install --no-cache-dir wheel /tmp/*.whl && \
14
11
python3 -m pip install --no-cache-dir Keras==2.3.1 && \
15
12
python3 -m pip install --no-cache-dir keras_applications && \
16
13
python3 -m pip install --no-cache-dir keras_preprocessing && \
17
- python3 -m pip install --no-cache-dir tensorflow-hub==0.5.0 && \
14
+ python3 -m pip install --no-cache-dir tensorflow-hub && \
18
15
python3 -m pip install --no-cache-dir tf2onnx && \
19
16
python3 -m pip install --no-cache-dir tqdm && \
20
17
python3 -m pip install --no-cache-dir pillow && \
@@ -30,6 +27,7 @@ RUN python3 -m pip install --no-cache-dir wheel /tmp/*.whl && \
30
27
python3 -m pip install --no-cache-dir networkx==2.3 && \
31
28
python3 -m pip install --no-cache-dir google-images-download==2.8.0 && \
32
29
python3 -m pip install --no-cache-dir opencv-python && \
30
+ python3 -m pip install --no-cache-dir jupyter-tensorboard && \
33
31
python3 -m pip install --no-cache-dir pygame && \
34
32
rm -rf /root/.cache && \
35
33
rm -f /tmp/*.whl
0 commit comments