From a19c11fc685d8a607a218c838e2a197c2c9295ad Mon Sep 17 00:00:00 2001 From: Newnius Date: Thu, 30 Apr 2020 00:32:41 +0800 Subject: [PATCH] add files --- Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..88d1875 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,21 @@ +FROM tensorflow/tensorflow:1.14.0-gpu + +MAINTAINER Newnius + +RUN apt update && \ + apt install -y python3 python3-pip && \ + rm -rf /var/lib/apt/lists/* + +RUN apt update && \ + apt install -y git vim httpie && \ + rm -rf /var/lib/apt/lists/* + +RUN pip3 install pandas sklearn tensorflow-gpu==1.14 + +ADD bootstrap.sh /etc/bootstrap.sh + +ADD agent.py /root/agent.py + +WORKDIR /root + +CMD ["/etc/bootstrap.sh"] \ No newline at end of file