1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-06-07 16:21:56 +00:00
YAO-Dockerfiles/tensorflow/1.14-gpu/Dockerfile

16 lines
288 B
Docker
Raw Normal View History

2019-12-24 07:12:59 +00:00
FROM tensorflow/tensorflow:1.14.0-gpu
MAINTAINER Newnius <newnius.cn@gmail.com>
USER root
RUN apt update && \
apt install -y git && \
rm -rf /var/lib/apt/lists/*
2020-01-13 10:59:10 +00:00
RUN pip install requests psutil py-cpuinfo pandas
2020-01-08 12:01:57 +00:00
2019-12-24 07:12:59 +00:00
ADD bootstrap.sh /etc/bootstrap.sh
ENTRYPOINT ["/etc/bootstrap.sh"]