Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
containers
eic_container
Merge requests
!287
Intel oneAPI 2022.1.2 HPC kit and CUDA build containers
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Intel oneAPI 2022.1.2 HPC kit and CUDA build containers
intel-oneapi
into
master
Overview
0
Commits
5
Pipelines
0
Changes
7
Merged
Intel oneAPI 2022.1.2 HPC kit and CUDA build containers
Wouter Deconinck
requested to merge
intel-oneapi
into
master
Mar 23, 2022
Overview
0
Commits
5
Pipelines
0
Changes
7
This will enable using the Intel oneAPI DPC++ compiler for SYCL etc.
Edited
Mar 23, 2022
by
Wouter Deconinck
0
0
Merge request reports
Compare
master
version 4
041a1335
Mar 23, 2022
version 3
85d94f8c
Mar 23, 2022
version 2
9520b3de
Mar 23, 2022
version 1
ac320277
Mar 23, 2022
master (base)
and
latest version
latest version
97bf3372
5 commits,
Mar 23, 2022
version 4
041a1335
4 commits,
Mar 23, 2022
version 3
85d94f8c
3 commits,
Mar 23, 2022
version 2
9520b3de
2 commits,
Mar 23, 2022
version 1
ac320277
1 commit,
Mar 23, 2022
7 files
+
1092
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
containers/cuda/Dockerfile
0 → 100644
+
72
−
0
View file @ 97bf3372
Edit in single-file editor
Open in Web IDE
#syntax=docker/dockerfile:1.2
# Minimal container based on Intel oneAPI for up-to-date packages.
# Very lightweight container with a minimal build environment (LOL)
FROM
nvidia/cuda:11.6.0-devel-ubuntu18.04
LABEL
maintainer="Wouter Deconinck <wouter.deconinck@umanitoba.ca" \
name="cuda_base" \
march="amd64"
COPY
bashrc /root/.bashrc
ENV
CLICOLOR_FORCE=1 \
LANGUAGE=en_US.UTF-8 \
LANG=en_US.UTF-8 \
LC_ALL=en_US.UTF-8
## Install additional packages. Remove the auto-cleanup functionality
## for docker, as we're using the new buildkit cache instead.
## We also install gitlab-runner, from the buster package (as bullseye is not available atm)
## TODO: libyaml-cpp-dev is a dependency for afterburner. We can probably remove
## this once afterburner is added to spack
RUN
--mount
=
type
=
cache,target
=
/var/cache/apt
\
rm
-f
/etc/apt/apt.conf.d/docker-clean
\
&&
ln
-fs
/usr/share/zoneinfo/America/New_York /etc/localtime
\
&&
echo
"US/Eastern"
>
/etc/timezone
\
&&
apt-get
-yqq
update
\
&&
apt-get
-yqq
upgrade
\
&&
apt-get
-yqq
install
--no-install-recommends
\
bc
\
ca-certificates
\
clang-format
\
clang-tidy
\
curl
\
file
\
build-essential
\
gdb
\
ghostscript
\
git
\
gnupg2
\
gv
\
iproute2
\
iputils-ping
\
iputils-tracepath
\
less
\
libcbor-xs-perl
\
libjson-xs-perl
\
libyaml-cpp-dev
\
locales
\
lua-posix
\
make
\
nano
\
openssh-client
\
parallel
\
poppler-utils
\
time
\
unzip
\
valgrind
\
vim-nox
\
wget
\
&&
localedef
-i
en_US
-f
UTF-8 en_US.UTF-8
\
&&
gcc
--version
\
&&
curl
-L
\
"https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh"
\
| bash
\
&&
sed
-i
"s/bookworm/buster/"
\
/etc/apt/sources.list.d/runner_gitlab-runner.list
\
&&
apt-get
-yqq
update
\
&&
apt-get
-yqq
install
--no-install-recommends
\
gitlab-runner
\
&&
apt-get
-yqq
autoremove
\
&&
rm
-rf
/var/lib/apt/lists/
*
Loading