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

18 lines
330 B
Docker
Raw Normal View History

2020-01-13 12:45:52 +00:00
FROM tensorflow/tensorflow:2.1.0-gpu-py3
MAINTAINER Newnius <newnius.cn@gmail.com>
USER root
RUN apt update && \
apt install -y git && \
rm -rf /var/lib/apt/lists/*
2020-05-04 09:50:07 +00:00
RUN pip3 install requests psutil py-cpuinfo pandas typing hdfs
2020-01-13 12:45:52 +00:00
ADD bootstrap.sh /etc/bootstrap.sh
2020-05-04 07:19:25 +00:00
ADD save.py /etc/save.py
2020-01-13 12:45:52 +00:00
ENTRYPOINT ["/etc/bootstrap.sh"]