mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-23 01:36:25 -06:00
12 lines
398 B
Bash
12 lines
398 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Script to be run on a manylinux2014 docker image to complete it for OPM usage.
|
||
|
# i.e. docker run -i -t quay.io/pypa/manylinux2014_x86_64 < setup-docker-image.sh
|
||
|
|
||
|
# A ready made Docker image is available at Dockerhub:
|
||
|
# docker run -i -t lindkvis/manylinux2014_opm:latest
|
||
|
|
||
|
dnf install -y almalinux-release-devel
|
||
|
|
||
|
dnf install -y blas-static lapack-static suitesparse-static ninja-build
|