Browse Source

Preventing error during Latex installation on Dockerfile

master
parent
commit
06c56b7480
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      docker/emacs/Dockerfile

+ 2
- 1
docker/emacs/Dockerfile View File

@ -10,7 +10,8 @@ RUN apt-get update \
&& apt-get install -y emacs
# installing texlive base with pdflatex utility:
RUN apt-get -y install \
RUN apt-get update \
&& apt-get -y install \
texlive-latex-base \
texlive-latex-extra \
texlive-pictures \


Loading…
Cancel
Save