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.

31 lines
686 B

  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 python 3, git and pip3:
  8. RUN pacman -Syu --noconfirm
  9. RUN pacman -Syu --noconfirm vim git make
  10. RUN pacman -Syu --noconfirm jupyter-notebook r gcc
  11. RUN R -e "install.packages('IRkernel',dependencies=TRUE, repos='http://cran.rstudio.com/')"
  12. RUN R -e "IRkernel::installspec(user = FALSE)"
  13. # installing modules:
  14. #RUN pip3 install numpy \
  15. #pandas \
  16. #matplotlib \
  17. #scipy \
  18. #researchpy \
  19. #sklearn \
  20. #seaborn \
  21. #statsmodels \
  22. #numdifftools \
  23. WORKDIR /home
  24. COPY .bashrc .bashrc
  25. #RUN pip install -r requirements.txt
  26. EXPOSE 8888
  27. #CMD ["flask", "run"]