mirror of
https://github.com/newnius/YAO-Dockerfiles.git
synced 2025-06-07 00:01:55 +00:00
16 lines
281 B
Docker
16 lines
281 B
Docker
FROM tensorflow/tensorflow:1.14.0-gpu
|
|
|
|
MAINTAINER Newnius <newnius.cn@gmail.com>
|
|
|
|
USER root
|
|
|
|
RUN apt update && \
|
|
apt install -y git && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install requests psutil py-cpuinfo
|
|
|
|
ADD bootstrap.sh /etc/bootstrap.sh
|
|
|
|
ENTRYPOINT ["/etc/bootstrap.sh"]
|