Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hysop
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
particle_methods
hysop
Merge requests
!40
Add docker ubuntu 22.04 cuda 11.7 image
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add docker ubuntu 22.04 cuda 11.7 image
docker_cuda
into
master
Overview
0
Commits
19
Pipelines
28
Changes
19
Merged
Jean-Baptiste Keck
requested to merge
docker_cuda
into
master
2 years ago
Overview
0
Commits
19
Pipelines
28
Changes
4
Expand
0
0
Merge request reports
Compare
version 4
version 16
c0e24d2e
2 years ago
version 15
d344f6fa
2 years ago
version 14
e68e533e
2 years ago
version 13
bb0afa1e
2 years ago
version 12
b21e384f
2 years ago
version 11
c35b8a12
2 years ago
version 10
47822fd3
2 years ago
version 9
aaefebe6
2 years ago
version 8
27e0c4e1
2 years ago
version 7
4534541e
2 years ago
version 6
ec029153
2 years ago
version 5
ae9f10d3
2 years ago
version 4
268eddef
2 years ago
version 3
e3f189a0
2 years ago
version 2
621c5637
2 years ago
version 1
51806cad
2 years ago
master (base)
and
version 5
latest version
9dd5d10a
19 commits,
2 years ago
version 16
c0e24d2e
18 commits,
2 years ago
version 15
d344f6fa
17 commits,
2 years ago
version 14
e68e533e
16 commits,
2 years ago
version 13
bb0afa1e
15 commits,
2 years ago
version 12
b21e384f
14 commits,
2 years ago
version 11
c35b8a12
13 commits,
2 years ago
version 10
47822fd3
10 commits,
2 years ago
version 9
aaefebe6
9 commits,
2 years ago
version 8
27e0c4e1
8 commits,
2 years ago
version 7
4534541e
7 commits,
2 years ago
version 6
ec029153
6 commits,
2 years ago
version 5
ae9f10d3
5 commits,
2 years ago
version 4
268eddef
4 commits,
2 years ago
version 3
e3f189a0
3 commits,
2 years ago
version 2
621c5637
2 commits,
2 years ago
version 1
51806cad
1 commit,
2 years ago
Show latest version
4 files
+
69
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
ci/utils/build_docker_image.bat
0 → 100755
+
7
−
0
Options
pushd
%~dp0
set
SCRIPT_DIR
=
%CD%
popd
set
NTHREADS
=
%NUMBER_OF_PROCESSORS%
set
HYSOP_REGISTRY_URL
=
'gricad-registry.univ-grenoble-alpes.fr'
if
"
%
~1"
NEQ
""
set
DOCKER_IMAGE_TAG
=
"
%
~1"
else
set
DOCKER_IMAGE_TAG
=
"jammy"
docker
"build"
"--rm=true"
"--build-arg"
"NTHREADS=
%NTHREADS%
"
"-t"
"
%HYSOP_REGISTRY_URL%
\particle_methods\hysop:
%DOCKER_IMAGE_TAG%
"
"-f"
"
%SCRIPT_DIR%
\..\docker_images\ubuntu\
%DOCKER_IMAGE_TAG%
\Dockerfile"
"
%SCRIPT_DIR%
\..\.."
Loading