1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-12-15 18:16:44 +00:00
Files
YAO-Dockerfiles/tensorflow/1.14-gpu/Dockerfile

16 lines
288 B
Docker
Raw Normal View History

2019-12-24 15:12:59 +08: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 18:59:10 +08:00
RUN pip install requests psutil py-cpuinfo pandas
2020-01-08 20:01:57 +08:00
2019-12-24 15:12:59 +08:00
ADD bootstrap.sh /etc/bootstrap.sh
ENTRYPOINT ["/etc/bootstrap.sh"]