1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-06-07 08:11:56 +00:00
YAO-Dockerfiles/yao-agent/mock/Dockerfile
2020-05-23 20:27:40 +08:00

22 lines
434 B
Docker
Executable File

FROM tensorflow/tensorflow:1.14.0-gpu
MAINTAINER Newnius <newnius.cn@gmail.com>
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
RUN git clone https://github.com/newnius/YAO-agent.git /yao-agent
WORKDIR /yao-agent
ADD bootstrap.sh /etc/
CMD ["/etc/bootstrap.sh"]