11 lines
350 B
Docker
11 lines
350 B
Docker
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 -c conda-forge numpy lark-parser \
|
|
&& conda clean --all --yes
|