Skip to content
Snippets Groups Projects
Commit 533e866d authored by Bas Nijholt's avatar Bas Nijholt
Browse files

copy env

parent 7eb0c768
No related branches found
No related tags found
No related merge requests found
Pipeline #20170 failed
FROM continuumio/miniconda
MAINTAINER Bas Nijholt <bas@nijho.lt>
RUN mkdir /environments
COPY environment.yml /environments/
RUN conda-env create -f /environments/environment.yml
RUN apt-get -o Acquire::Check-Valid-Until=false update -q && apt-get install -qy \
texlive-full \
python-pygments gnuplot \
make git \
&& rm -rf /var/lib/apt/lists/*
COPY environment.yml .
RUN conda-env create -f environment.yml
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment