mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
ci: add cuda9.2 base image
This commit is contained in:
5
.gitlab/ci/docker/cuda9.2/Dockerfile
Normal file
5
.gitlab/ci/docker/cuda9.2/Dockerfile
Normal 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
|
||||
14
.gitlab/ci/docker/cuda9.2/install_deps.sh
Executable file
14
.gitlab/ci/docker/cuda9.2/install_deps.sh
Executable 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
|
||||
Reference in New Issue
Block a user