Skip to content

Commit

Permalink
Merge pull request #4476 from kmaehashi/add-intel-chainer-dockerfile
Browse files Browse the repository at this point in the history
add Dockerfiles for Chainer with iDeep
  • Loading branch information
niboshi committed Mar 19, 2018
2 parents e788405 + e748c23 commit 3d3ba51
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/intel/README.md
@@ -0,0 +1,4 @@
Chainer with iDeep
==================

Dockerfiles for Chainer accelerated by [iDeep](https://github.com/intel/ideep).
11 changes: 11 additions & 0 deletions docker/intel/python2/Dockerfile
@@ -0,0 +1,11 @@
FROM ubuntu:16.04

RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
python-dev \
python-pip \
python-wheel \
python-setuptools && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN pip install ideep4py chainer==4.0.0b4
11 changes: 11 additions & 0 deletions docker/intel/python3/Dockerfile
@@ -0,0 +1,11 @@
FROM ubuntu:16.04

RUN apt-get update -y && \
apt-get install -y --no-install-recommends \
python3-dev \
python3-pip \
python3-wheel \
python3-setuptools && \
rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*

RUN pip3 install ideep4py chainer==4.0.0b4

0 comments on commit 3d3ba51

Please sign in to comment.