Skip to content

Commit

Permalink
Fix ufoym#83
Browse files Browse the repository at this point in the history
  • Loading branch information
ufoym committed Feb 25, 2019
1 parent 5e3ddcb commit f441d17
Show file tree
Hide file tree
Showing 31 changed files with 113 additions and 76 deletions.
6 changes: 4 additions & 2 deletions docker/Dockerfile.all-jupyter-py36-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# cntk latest (pip)
# ==================================================================

FROM ubuntu:16.04
FROM ubuntu:18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -36,6 +36,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand Down Expand Up @@ -69,6 +70,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -83,7 +85,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.all-jupyter-py36-cu90
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# cntk latest (pip)
# ==================================================================

FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -36,6 +36,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand Down Expand Up @@ -69,6 +70,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -83,7 +85,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.all-py36-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# cntk latest (pip)
# ==================================================================

FROM ubuntu:16.04
FROM ubuntu:18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -35,6 +35,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand Down Expand Up @@ -68,6 +69,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -82,7 +84,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.all-py36-cu90
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# cntk latest (pip)
# ==================================================================

FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -35,6 +35,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand Down Expand Up @@ -68,6 +69,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -82,7 +84,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.caffe-py36-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# caffe latest (git)
# ==================================================================

FROM ubuntu:16.04
FROM ubuntu:18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -23,6 +23,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand All @@ -42,6 +43,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -56,7 +58,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.caffe-py36-cu90
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# caffe latest (git)
# ==================================================================

FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -23,6 +23,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand All @@ -42,6 +43,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -56,7 +58,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.chainer-py36-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# chainer latest (pip)
# ==================================================================

FROM ubuntu:16.04
FROM ubuntu:18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -22,6 +22,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand All @@ -41,6 +42,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -55,7 +57,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.chainer-py36-cu90
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# chainer latest (pip)
# ==================================================================

FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -22,6 +22,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand All @@ -41,6 +42,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -55,7 +57,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.cntk-py36-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# cntk latest (pip)
# ==================================================================

FROM ubuntu:16.04
FROM ubuntu:18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -23,6 +23,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand All @@ -42,6 +43,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -56,7 +58,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
6 changes: 4 additions & 2 deletions docker/Dockerfile.cntk-py36-cu90
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# cntk latest (pip)
# ==================================================================

FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -23,6 +23,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand All @@ -42,6 +43,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
python3.6 \
python3.6-dev \
python3-distutils \
&& \
wget -O ~/get-pip.py \
https://bootstrap.pypa.io/get-pip.py && \
Expand All @@ -56,7 +58,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
scipy \
pandas \
cloudpickle \
scikit-learn==0.20.0 \
scikit-learn \
matplotlib \
Cython \
&& \
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile.darknet-cpu
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# darknet latest (git)
# ==================================================================

FROM ubuntu:16.04
FROM ubuntu:18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -21,6 +21,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand Down
3 changes: 2 additions & 1 deletion docker/Dockerfile.darknet-cu90
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# darknet latest (git)
# ==================================================================

FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu18.04
RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \
PIP_INSTALL="python -m pip --no-cache-dir install --upgrade" && \
GIT_CLONE="git clone --depth 10" && \
Expand All @@ -21,6 +21,7 @@ RUN APT_INSTALL="apt-get install -y --no-install-recommends" && \

DEBIAN_FRONTEND=noninteractive $APT_INSTALL \
build-essential \
apt-utils \
ca-certificates \
cmake \
wget \
Expand Down
Loading

0 comments on commit f441d17

Please sign in to comment.