netgen/tests/dockerfile_mpi

28 lines
669 B
Plaintext
Raw Normal View History

2022-04-25 13:14:02 +05:00
FROM ubuntu:22.04
2019-04-17 18:36:44 +05:00
ENV DEBIAN_FRONTEND=noninteractive
MAINTAINER Matthias Hochsteger <matthias.hochsteger@tuwien.ac.at>
2021-11-28 20:14:41 +05:00
RUN apt-get update && apt-get -y install \
ccache \
clang \
clang-tidy \
cmake \
g++ \
gfortran \
git \
libglu1-mesa-dev \
libopenmpi-dev \
libpython3-dev \
libxmu-dev \
openmpi-bin \
python3 \
python3-distutils \
python3-mpi4py \
python3-numpy \
python3-pip \
python3-tk \
tcl-dev \
tk-dev
2022-08-08 12:35:45 +05:00
RUN python3 -m pip install pytest-mpi pytest-check pytest pybind11-stubgen
2019-04-17 18:36:44 +05:00
ADD . /root/src/netgen