Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
containers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vandenplas, Jeremie
containers
Merge requests
!2
add ubuntu intel
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add ubuntu intel
restruct
into
main
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
Vandenplas, Jeremie
requested to merge
restruct
into
main
3 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
7a5d980c
1 commit,
3 years ago
2 files
+
34
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
docker/ubuntu_intel/Dockerfile
0 → 100644
+
24
−
0
Options
FROM
ubuntu:20.04
ENV
LINUX_BASEKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/18487/l_BaseKit_p_2022.1.2.146_offline.sh
ENV
LINUX_HPCKIT_URL: https://registrationcenter-download.intel.com/akdlm/irc_nas/18479/l_HPCKit_p_2022.1.2.117_offline.sh
ENV
LINUX_CPP_COMPONENTS='intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic'
ENV
LINUX_FORTRAN_COMPONENTS='intel-oneapi-compiler-fortran'
ENV
LINUX_MKL_COMPONENTS='intel-oneapi-mkl'
ENV
LINUX_MKL1_COMPONENTS='intel-oneapi-mkl-devel'
ENV
LINUX_DPCPP_COMPONENTS='intel-oneapi-compiler-dpcpp-cpp'
ENV
LINUX_CPP_COMPONENTS_WEB='intel.oneapi.lin.dpcpp-cpp-compiler-pro'
ENV
LINUX_FORTRAN_COMPONENTS_WEB='intel.oneapi.lin.ifort-compiler'
ENV
LINUX_DPCPP_COMPONENTS_WEB='intel.oneapi.lin.dpcpp-cpp-compiler'
ENV
LINUX_APT_DNF_CACHE_NUMBER='7'
ENV
SAMPLES_TAG='2022.1.0'
ENV
COMPILER_VERSION: 2022.0.3
RUN
apt-get update
&&
DEBIAN_FRONTEND
=
noninteractive
TZ
=
Europe/Paris apt-get
install
-y
wget build-essential pkg-config cmake ca-certificates gnupg git python3-pip
RUN
pip
install
--upgrade
fypp
COPY
setup_apt_repo_linux_no_sudo.sh /
RUN
/setup_apt_repo_linux_no_sudo.sh
&&
apt-get
install
-y
$LINUX_FORTRAN_COMPONENTS
$LINUX_CPP_COMPONENTS
$LINUX_MKL_COMPONENTS
$LINUX_MKL1_COMPONENTS
RUN
apt-get clean all
SHELL
["/bin/bash", "-c"]
RUN
source
/opt/intel/oneapi/setvars.sh
Loading