mirror of
https://github.com/newnius/YAO-Dockerfiles.git
synced 2025-06-07 08:11:56 +00:00
14 lines
237 B
Docker
14 lines
237 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/*
|
||
|
|
||
|
ADD bootstrap.sh /etc/bootstrap.sh
|
||
|
|
||
|
ENTRYPOINT ["/etc/bootstrap.sh"]
|