From 462498c233465ef0d562a5d75404af686c7d02de Mon Sep 17 00:00:00 2001 From: Bas Nijholt <basnijholt@gmail.com> Date: Wed, 21 Aug 2019 13:11:51 +0200 Subject: [PATCH] install build-essential and tmp remove latex --- Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index e182b77..bb976d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,14 @@ FROM continuumio/miniconda MAINTAINER Bas Nijholt <bas@nijho.lt> +RUN apt-get -o Acquire::Check-Valid-Until=false update -q && apt-get install -qy \ +# texlive-full \ +# python-pygments gnuplot \ + build-essential \ + make git \ + && rm -rf /var/lib/apt/lists/* + 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/* -- GitLab