The scientific-emacs a container-based in Debian:Focal version with emacs 26, and a light version of TeXlive.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
852 B

  1. # Ubuntu bullseye
  2. FROM debian:bullseye
  3. ENV UNAME="scientific-emacs"
  4. MAINTAINER gmarxcc
  5. LABEL version="0.1"
  6. # installing emacs
  7. RUN apt-get update \
  8. && apt-get -y install emacs
  9. # installing texlive base with pdflatex utility:
  10. RUN apt-get update \
  11. && apt-get -y install \
  12. texlive-latex-base
  13. #installing some usefull apps
  14. RUN apt-get update\
  15. && apt-get -y install \
  16. git \
  17. zsh \
  18. wget \
  19. curl \
  20. apt-utils\
  21. aspell\
  22. vim\
  23. imagemagick
  24. # oh-my-zshell
  25. RUN sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  26. # updating texlive
  27. RUN apt-get update\
  28. && apt-get -y upgrade texlive-base
  29. # packages installation
  30. #RUN tlmgr init-usertree
  31. #RUN tlmgr --usermode install collection-latexrecommended\
  32. # collection-mathscience
  33. # init
  34. ENTRYPOINT ["zsh"]
  35. #ENTRYPOINT [“echo”, “Hello”]
  36. #CMD [“World”]