Skip to content

Commit

Permalink
parastell and cubit working,but has issues with dagmc export from cubit
Browse files Browse the repository at this point in the history
  • Loading branch information
Edgar-21 committed Mar 28, 2024
1 parent ba90125 commit 310c517
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ FROM continuumio/miniconda3

ENV TZ=America/Chicago
ENV PYTHONPATH=/opt/Coreform-Cubit-2024.3/bin/
ENV PYTHONPATH=$PYTHONPATH:/opt/pystell_uw
ENV PYTHONPATH=$PYTHONPATH:/opt/parastell
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

RUN apt-get update -y
RUN apt-get upgrade -y

Expand All @@ -27,11 +28,27 @@ RUN apt-get install -y libgl1-mesa-glx \
libxkbcommon-x11-0 \
libxcb-randr0 \
libxcb-xinerama0 \
libxm4
libxm4 \
libtiff5 \
libxcursor1 \
libxinerama1

# download cubit
RUN wget -O /cubit.deb https://f002.backblazeb2.com/file/cubit-downloads/Coreform-Cubit/Releases/Linux/Coreform-Cubit-2024.3%2B46968-Lin64.deb

# install cubit
RUN dpkg -i cubit.deb

# parastell env
COPY ./parastell_env.yml /parastell_env.yml

RUN conda env create -f parastell_env.yml

WORKDIR /opt

RUN git clone https://github.com/aaroncbader/pystell_uw.git

RUN git clone https://github.com/svalinn/parastell.git

WORKDIR /

0 comments on commit 310c517

Please sign in to comment.