Debian Stretch in Docker container
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.

32 lines
605 B

2 years ago
  1. # Using Debian Stretch
  2. FROM debian:stretch
  3. ENV UNAME = "debian"
  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 apt-get update
  9. RUN apt-get -y install vim git
  10. #RUN apt-get -y install git \
  11. #python3-pip
  12. #installing jupyter-notebook:
  13. #RUN pip3 install jupyter
  14. # installing modules:
  15. #RUN pip3 install numpy \
  16. #pandas \
  17. #matplotlib \
  18. #scipy \
  19. #researchpy \
  20. #sklearn \
  21. #seaborn \
  22. #statsmodels \
  23. #numdifftools \
  24. WORKDIR /home
  25. #COPY requirements.txt requirements.txt
  26. #RUN pip install -r requirements.txt
  27. #EXPOSE 5000
  28. #CMD ["flask", "run"]