Browse Source

to test new installation

redis
parent
commit
9834ae9563
1 changed files with 35 additions and 0 deletions
  1. +35
    -0
      Dockerfile

+ 35
- 0
Dockerfile View File

@ -7,3 +7,38 @@ LABEL version="0.1"
# installing emacs
RUN apt-get update \
&& apt-get -y install emacs
# installing texlive base with pdflatex utility:
RUN apt-get update \
&& apt-get -y install \
texlive-latex-base
#installing some usefull apps
RUN apt-get update\
&& apt-get -y install \
git \
zsh \
wget \
curl \
apt-utils\
aspell\
vim\
imagemagick
# oh-my-zshell
RUN sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# updating texlive
RUN apt-get update\
&& apt-get -y upgrade texlive-base
# packages installation
#RUN tlmgr init-usertree
#RUN tlmgr --usermode install collection-latexrecommended\
# collection-mathscience
# init
ENTRYPOINT ["zsh"]
#ENTRYPOINT [“echo”, “Hello”]
#CMD [“World”]

Loading…
Cancel
Save