diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d6329c7..0000000 --- a/Dockerfile +++ /dev/null @@ -1,21 +0,0 @@ -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 docker kafka psutil - -ADD bootstrap.sh /etc/bootstrap.sh - -ADD agent.py /root/agent.py - -WORKDIR /root - -CMD ["/etc/bootstrap.sh"] \ No newline at end of file diff --git a/bootstrap.sh b/bootstrap.sh deleted file mode 100755 index c1e178f..0000000 --- a/bootstrap.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash - -# run nvidia-smi in background to speed up the query and reduce CPU load (why?) -nvidia-smi daemon - -python3 /root/agent.py \ No newline at end of file