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

# Using Arch
FROM archlinux:base
ENV UNAME = "archlinux"
MAINTAINER gmarxcc
LABEL version = "0.1"
ENV LANG = C.UTF-8 LC_ALL=C.UTF-8
# installing python 3, git and pip3:
RUN pacman -Syu --noconfirm
RUN pacman -Syu --noconfirm vim git make
RUN pacman -Syu --noconfirm jupyter-notebook r gcc
RUN R -e "install.packages('IRkernel',dependencies=TRUE, repos='http://cran.rstudio.com/')"
RUN R -e "IRkernel::installspec(user = FALSE)"
# installing modules:
#RUN pip3 install numpy \
#pandas \
#matplotlib \
#scipy \
#researchpy \
#sklearn \
#seaborn \
#statsmodels \
#numdifftools \
WORKDIR /home
COPY .bashrc .bashrc
#RUN pip install -r requirements.txt
EXPOSE 8888
#CMD ["flask", "run"]