nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04 -tensorflow-gpu==1.10.0

2021-01-14 10:28:50 浏览数 (1)

dockerfile

代码语言:javascript复制
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04

MAINTAINER Mats Rynge <rynge@isi.edu>

ADD environment /environment
ADD exec        /.exec
ADD run         /.run
ADD shell       /.shell

RUN chmod 755 .exec .run .shell

RUN export DEBIAN_FRONTEND=noninteractive && 
    apt-get update && apt-get upgrade -y --allow-unauthenticated && 
    apt-get install -y --allow-unauthenticated 
        build-essential 
        cmake 
        cuda-drivers 
        curl 
        git 
        libfreetype6-dev 
        libpng12-dev 
        libssl-dev 
        libxpm-dev 
        libzmq3-dev 
        module-init-tools 
        openssh-client 
        openssh-server 
        pkg-config 
        python 
        python-dev 
        python-tk 
        python3 
        python3-dev 
        python3-tk 
        rsync 
        software-properties-common 
        unzip 
        zip 
        zlib

0 人点赞