~patrickhaussmann/docker-latex

15b4f11dcf9a3ae1a007c30e312faee3ed7e6b21 — patrickhaussmann 2 years ago c7f29ae
 Fix: quiet apt install
1 files changed, 8 insertions(+), 8 deletions(-)

M Dockerfile
M Dockerfile => Dockerfile +8 -8
@@ 1,15 1,15 @@
FROM patrickhaussmann/dev
USER root
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update --quiet \
    && apt-get install -y --quiet texlive texlive-lang-german texlive-latex-extra texlive-lang-english texlive-plain-generic texlive-science texlive-extra-utils latexmk lmodern \
    && apt-get install -y --quiet python3 python3-pip jq ghostscript gnuplot \
	&& apt-get install -y --quiet software-properties-common && add-apt-repository -y ppa:inkscape.dev/stable && apt-get update --quiet && apt-get install -y --quiet inkscape \
RUN apt-get -qq update \
    && apt-get -qq install texlive texlive-lang-german texlive-latex-extra texlive-lang-english texlive-plain-generic texlive-science texlive-extra-utils latexmk lmodern \
    && apt-get -qq install python3 python3-pip jq ghostscript gnuplot \
	&& apt-get -qq install software-properties-common && add-apt-repository -y ppa:inkscape.dev/stable && apt-get -qq update && apt-get -qq install inkscape \
    && pip3 install numpy matplotlib scipy pygments \
    && apt-get purge -y --quiet python3-pip \
    && apt-get --purge remove -y .\*-doc$ \
    && apt-get autoremove -y \
    && apt-get clean -y \
    && apt-get -qq purge python3-pip \
    && apt-get -qq --purge remove .\*-doc$ \
    && apt-get -qq autoremove \
    && apt-get -qq clean \
    && rm -rf /var/lib/apt/lists/*
RUN mkdir /.config && chmod 677 /.config && mkdir /.cache && chmod 677 /.cache
WORKDIR /src