1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-06-07 00:01:55 +00:00
YAO-Dockerfiles/yao-optimizer/dev/Dockerfile

21 lines
496 B
Docker
Raw Permalink Normal View History

2020-05-01 08:50:08 +00:00
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/*
2020-05-02 12:24:39 +00:00
RUN pip3 install pandas sklearn tensorflow-gpu==1.14 keras
2020-05-01 08:50:08 +00:00
ADD bootstrap.sh /etc/bootstrap.sh
RUN git clone https://code.newnius.com/newnius/yao-optimizer.git /root/yao-optimizer/
WORKDIR /root/yao-optimizer
CMD ["/etc/bootstrap.sh"]