mirror of
https://github.com/newnius/YAO-Dockerfiles.git
synced 2025-06-07 16:21:56 +00:00
15 lines
236 B
Docker
15 lines
236 B
Docker
FROM nvidia/cuda:9.0-cudnn7-runtime
|
|
|
|
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"]
|
|
|