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.

45 lines
804 B

  1. # Ubuntu
  2. FROM ubuntu:focal
  3. ENV UNAME="scientific-emacs"
  4. MAINTAINER gmarxcc
  5. LABEL version="0.1"
  6. ARG DEBIAN_FRONTEND=noninteractive
  7. ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
  8. # installing emacs
  9. RUN apt-get update \
  10. && apt-get install -y emacs
  11. # installing texlive base with pdflatex utility:
  12. RUN apt-get update \
  13. && apt-get -y install \
  14. texlive-latex-base \
  15. texlive-latex-extra \
  16. texlive-pictures \
  17. texlive-science \
  18. texlive-bibtex-extra
  19. # useful apps
  20. RUN apt-get update
  21. RUN apt-get -y install \
  22. git \
  23. wget \
  24. curl \
  25. aspell \
  26. vim \
  27. python3 \
  28. elpa-pdf-tools \
  29. auctex \
  30. zsh \
  31. python3-pip
  32. # installing python modules
  33. RUN pip3 install pandas \
  34. numpy \
  35. matplotlib \
  36. scholarly
  37. # oh-my-zshell
  38. # RUN sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
  39. # entrypoint
  40. # ENTRYPOINT ["zsh"]