- C-a == Ctrl-a
- M-a == Alt-a
:q close
:w write/saves
:wa[!] write/save all windows [force]
:wq write/save and close
| FROM nvidia/cuda:10.0-cudnn7-devel-ubuntu16.04 | |
| RUN apt-get update && apt-get install -y curl | |
| RUN curl -sSL http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh && \ | |
| bash /tmp/miniconda.sh -bfp /usr/local && \ | |
| rm -rf /tmp/miniconda.sh | |
| RUN conda update -y conda | |
| RUN conda install -q -y pyyaml mkl mkl-include setuptools cmake cffi typing ipython |
| ARG UBUNTU_VERSION=20.04 | |
| ARG CUDA_VERSION=11.3.1 | |
| ARG CUDA=11.3 | |
| ARG CUDNN_VERSION=8 | |
| FROM nvidia/cuda:${CUDA_VERSION}-cudnn${CUDNN_VERSION}-devel-ubuntu${UBUNTU_VERSION} | |
| LABEL maintainer "http://gzupark.dev" | |
| ARG CUDA_VERSION | |
| ARG CUDA |