Skip to content
Snippets Groups Projects
Select Git revision
  • 660d2af0dec5cd3a9b4db4c6eb677ff4e7f82602
  • master default protected
  • Version-3.3.0
  • Version-3.2.1
  • Version-3.2.0
  • Version-3.1.2
  • Version-3.1.1
  • Version-3.1.0
  • Version-3.0.0
9 results

solo_obt2utc.pro

Blame
  • Dockerfile 541 B
    FROM debian:latest
    ENV DEBIAN_FRONTEND=noninteractive
    RUN apt-get update
    RUN apt-get install -y bash git wget gcc-12 openmpi-bin libopenmpi-dev build-essential python3 pip indent libgsl-dev libgsl27 libfftw3-dev libfftw3-mpi-dev
    RUN rm /usr/lib/python*/EXTERNALLY-MANAGED
    RUN pip install -U autopep8 Jinja2 numpy PyYAML libclang matplotlib numba
    ENV EC_FLAGS="-Wl,--no-as-needed"
    ENV EC_BUILD=/root/build/
    ENV EC_DATA=/root/data/
    ENV MPIRUN='mpirun --allow-run-as-root -n 2'
    ENV OMP_NUM_THREADS=2
    RUN mkdir -p $EC_BUILD
    RUN mkdir -p $EC_DATA