A repository with all included for scientific work.
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.

40 lines
974 B

2 years ago
  1. # Using Arch
  2. FROM archlinux:base
  3. ENV UNAME = "archlinux"
  4. MAINTAINER gmarxcc
  5. LABEL version = "0.1"
  6. ENV LANG = C.UTF-8 LC_ALL=C.UTF-8
  7. # installing vim git make and other tools
  8. RUN pacman -Syu --noconfirm
  9. RUN pacman -Syu --noconfirm vim git make
  10. RUN pacman -Syu --noconfirm jupyter-notebook r gcc
  11. RUN pacman -Syu --noconfirm pandoc gnuplot emacs
  12. #Installing LaTeX
  13. #--> Delete comment to enable Full LaTeX installation
  14. #RUN pacman -Syu --noconfirm texlive-most
  15. #--> basic installation or minimal
  16. RUN pacman -Syu --noconfirm texlive-core
  17. # Installing R packages and enabling R in jupyter
  18. RUN R -e "install.packages('IRkernel',dependencies=TRUE, repos='http://cran.rstudio.com/')"
  19. RUN R -e "IRkernel::installspec(user = FALSE)"
  20. # Installng modules:
  21. #RUN pip3 install numpy \
  22. #pandas \
  23. #matplotlib \
  24. #scipy \
  25. #researchpy \
  26. #sklearn \
  27. #seaborn \
  28. #statsmodels \
  29. #numdifftools \
  30. WORKDIR /home
  31. COPY .bashrc .bashrc
  32. COPY .bins/* /usr/local/bin
  33. EXPOSE 8888
  34. #CMD ["flask", "run"]