From 4655f4c2d46b12a70050f06209e49f063c693089 Mon Sep 17 00:00:00 2001 From: Tamas Gal <tgal@km3net.de> Date: Wed, 14 Nov 2018 09:30:33 +0100 Subject: [PATCH] Add more python versions --- base/python:3.5 | 11 +++++++++++ base/python:3.6 | 11 +++++++++++ base/python:3.7 | 11 +++++++++++ 3 files changed, 33 insertions(+) create mode 100644 base/python:3.5 create mode 100644 base/python:3.6 create mode 100644 base/python:3.7 diff --git a/base/python:3.5 b/base/python:3.5 new file mode 100644 index 0000000..3f90feb --- /dev/null +++ b/base/python:3.5 @@ -0,0 +1,11 @@ +FROM python:3.5.6 + MAINTAINER Tamas Gal <tgal@km3net.de> + + RUN apt-get update -qq && apt-get install -y -qq libhdf5-dev + + RUN pip install -U pip setuptools wheel + + RUN pip install numpy + RUN pip install scipy pandas sklearn statsmodels numba numexpr tables h5py + RUN pip install pytest pytest-cov docopt sphinx sphinx-gallery + RUN pip install matplotlib seaborn pillow ipython jupyter notebook pillow diff --git a/base/python:3.6 b/base/python:3.6 new file mode 100644 index 0000000..844d846 --- /dev/null +++ b/base/python:3.6 @@ -0,0 +1,11 @@ +FROM python:3.6.7 + MAINTAINER Tamas Gal <tgal@km3net.de> + + RUN apt-get update -qq && apt-get install -y -qq libhdf5-dev + + RUN pip install -U pip setuptools wheel + + RUN pip install numpy + RUN pip install scipy pandas sklearn statsmodels numba numexpr tables h5py + RUN pip install pytest pytest-cov docopt sphinx sphinx-gallery + RUN pip install matplotlib seaborn pillow ipython jupyter notebook pillow diff --git a/base/python:3.7 b/base/python:3.7 new file mode 100644 index 0000000..acfe9b5 --- /dev/null +++ b/base/python:3.7 @@ -0,0 +1,11 @@ +FROM python:3.7.1 + MAINTAINER Tamas Gal <tgal@km3net.de> + + RUN apt-get update -qq && apt-get install -y -qq libhdf5-dev + + RUN pip install -U pip setuptools wheel + + RUN pip install numpy + RUN pip install scipy pandas sklearn statsmodels numba numexpr tables h5py + RUN pip install pytest pytest-cov docopt sphinx sphinx-gallery + RUN pip install matplotlib seaborn pillow ipython jupyter notebook pillow -- GitLab