# Using Debian Stretch
FROM debian:stretch 
ENV UNAME = "debian"
MAINTAINER gmarxcc
LABEL version = "0.1"
ENV LANG = C.UTF-8 LC_ALL=C.UTF-8

# installing python 3, git and pip3:
RUN apt-get update
RUN apt-get -y install vim git
#RUN apt-get -y install git \
#python3-pip

#installing jupyter-notebook:
#RUN pip3 install jupyter 

# installing modules:
#RUN pip3 install numpy \
#pandas \
#matplotlib \
#scipy \
#researchpy \
#sklearn \
#seaborn \
#statsmodels \
#numdifftools \

WORKDIR /home
#COPY requirements.txt requirements.txt
#RUN pip install -r requirements.txt
#EXPOSE 5000
#CMD ["flask", "run"]