Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VirtualFluids
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
iRMB
VirtualFluids
Commits
491cbb67
Commit
491cbb67
authored
3 years ago
by
Soeren Peters
Browse files
Options
Downloads
Patches
Plain Diff
add vf dockerfiles
parent
cc7e647f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!85
make use of gitz docker registry
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Containers/dockerfiles/Ubuntu20_04.Dockerfile
+28
-0
28 additions, 0 deletions
Containers/dockerfiles/Ubuntu20_04.Dockerfile
Containers/dockerfiles/Ubuntu20_04_Python.Dockerfile
+33
-0
33 additions, 0 deletions
Containers/dockerfiles/Ubuntu20_04_Python.Dockerfile
with
61 additions
and
0 deletions
Containers/dockerfiles/Ubuntu20_04.Dockerfile
0 → 100644
+
28
−
0
View file @
491cbb67
# VirtualFluids BuildDependencies:
# Ubuntu 20.04
# general tools: wget, unzip, git
# CMake 3.20.5
# ccache
# gcc 9.3 (default)
# openmpi 4.0.3
# openmp
# cuda 11.3.1 as base image
# clang 10.0 (default)
FROM
nvidia/cuda:11.3.1-devel-ubuntu20.04
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
&&
\
apt-get
install
-y
\
wget unzip git
\
build-essential gdb
\
ccache
\
ninja-build
\
openmpi-bin
=
4.0.3-0ubuntu1
\
libomp-dev
\
clang clang-format clang-tidy clang-tools llvm-dev libclang-dev
&&
\
mkdir
-p
/usr/local/cmake/
&&
cd
/usr/local/cmake/
&&
\
version
=
3.20
&&
build
=
5
&&
\
wget https://cmake.org/files/v
$version
/cmake-
$version
.
$build
-linux-x86_64
.tar.gz
&&
\
tar
-xzvf
cmake-
$version
.
$build
-linux-x86_64
.tar.gz
&&
\
ln
-s
/usr/local/cmake/cmake-
$version
.
$build
-linux-x86_64
/bin/
*
/usr/local/bin/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Containers/dockerfiles/Ubuntu20_04_Python.Dockerfile
0 → 100644
+
33
−
0
View file @
491cbb67
FROM
irmb/virtualfluids-deps-ubuntu20.04:latest
ENV
DEBIAN_FRONTEND=noninteractive
RUN
apt-get update
&&
\
apt-get
install
-y
\
python3
\
python3-venv
\
python3-pip
\
uuid-dev
\
libgpgme-dev
\
squashfs-tools
\
libseccomp-dev
\
pkg-config
\
cryptsetup-bin
\
golang
\
libgl1
\
&&
pip3
install
\
setuptools
\
wheel
\
scikit-build
\
pyvista
\
numpy
\
ansible
\
&&
export
VERSION
=
3.8.0
\
&&
wget https://github.com/sylabs/singularity/releases/download/v
${
VERSION
}
/singularity-ce-
${
VERSION
}
.tar.gz
\
&&
tar
-xzf
singularity-ce-
${
VERSION
}
.tar.gz
WORKDIR
/singularity-ce-3.8.0
RUN
./mconfig
&&
\
make
-C
./builddir
&&
\
make
-C
./builddir
install
WORKDIR
/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment