File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 11FROM ubuntu:22.04
22
33RUN apt-get -y update && apt-get install -y apt-utils && \
4- apt-get install -y -qq -o=Dpkg::Use-Pty=0 build-essential gfortran zlib1g-dev \
5- libhdf5-dev libzip-dev ninja-build libcurl4-openssl-dev libboost-all-dev bzip2 cmake wget python3
4+ apt-get install -y -qq -o=Dpkg::Use-Pty=0 build-essential gfortran \
5+ libhdf5-dev libzip-dev ninja-build libcurl4-openssl-dev libboost-all-dev libbz2-dev cmake python3
6+
7+ # Install an alternative Fortran compiler
8+ RUN apt-get install -y gfortran-10
9+
10+ # Set the alternative Fortran compiler as the default
11+ RUN update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-10 10
12+
13+ # Fix broken dependencies and reconfigure ca-certificates
14+ RUN apt-get -y update && apt-get install -f && dpkg --configure -a && apt-get clean
615
716COPY . /vcellroot
817
You can’t perform that action at this time.
0 commit comments