Working Dockerfile with git build-essential gfortran libopenmpi-dev added

This commit is contained in:
Yeongdo Park 2019-08-04 21:53:26 -04:00
parent 3179f009ca
commit 8d41467494

View file

@ -1,6 +1,11 @@
FROM conda/miniconda2
RUN apt-get -qq update && apt-get -qq -y install git build-essential gfortran libopenmpi-dev \
&& apt-get -qq -y autoremove \
&& apt-get autoclean \
&& rm -rf /var/lib/apt/lists/* /var/log/dpkg.log
RUN conda update conda \
&& conda install -y numpy scipy \
&& conda install -y -c conda-forge lark-parser \
&& conda install -y -c conda-forge numpy lark-parser \
&& conda clean --all --yes