blob: 7564a4ee5220d939d53a532cc95a10c49c8bd4f9 (
plain)
1
2
3
4
5
6
7
|
FROM tensorflow/tensorflow:1.13.2
RUN apt-get update \
&& apt-get install -y git
RUN git clone --depth 1 https://github.com/aymericdamien/TensorFlow-Examples.git
RUN python -m pip install -U pip setuptools
RUN python -m pip install matplotlib
|