1
0
mirror of https://github.com/newnius/YAO-Dockerfiles.git synced 2025-12-13 01:26:44 +00:00
Files
YAO-Dockerfiles/base/Dockerfile

15 lines
236 B
Docker
Raw Normal View History

2019-04-12 14:50:46 +08:00
FROM nvidia/cuda:9.0-cudnn7-runtime
MAINTAINER Newnius <newnius.cn@gmail.com>
USER root
RUN apt update && \
2019-04-29 21:10:42 +08:00
apt install -y git && \
rm -rf /var/lib/apt/lists/*
2019-04-12 14:50:46 +08:00
ADD bootstrap.sh /etc/bootstrap.sh
ENTRYPOINT ["/etc/bootstrap.sh"]