1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-12-15 10:06:45 +00:00

add tf 2.1

This commit is contained in:
2020-01-13 20:45:52 +08:00
parent 298bd94998
commit 05480f249a
2 changed files with 34 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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/*
RUN pip3 install requests psutil py-cpuinfo pandas typing
ADD bootstrap.sh /etc/bootstrap.sh
ENTRYPOINT ["/etc/bootstrap.sh"]