ci: add cuda9.2 base image

This commit is contained in:
Brad King
2021-06-30 11:11:14 -04:00
parent 88fade3914
commit bf6965fbb8
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
FROM nvidia/cuda:9.2-devel-ubuntu16.04
MAINTAINER Brad King <brad.king@kitware.com>
COPY install_deps.sh /root/install_deps.sh
RUN sh /root/install_deps.sh

View File

@@ -0,0 +1,14 @@
#!/bin/sh
set -e
apt-get update
# Install development tools.
apt-get install -y \
g++ \
clang-3.8 \
curl \
git
apt-get clean