Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 6f7996c

Browse files
committed
common readme full packages
1 parent 7b740c3 commit 6f7996c

File tree

8 files changed

+42
-3
lines changed

8 files changed

+42
-3
lines changed

docker_repo.README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Docker images for [Intel Distribution for
2+
Python](https://software.intel.com/en-us/intel-distribution-for-python)
3+
4+
Images:
5+
6+
* idp2_core
7+
* idp3_core
8+
* idp2_full
9+
* idp3_full
10+
11+
The core images are based on intelpython{2,3}_core and the full images are
12+
based on intelpython{2,3}_core.
13+
14+
Python is on the path
15+
16+
17+

idp2_core/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

idp2_core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docker_repo.README.md

idp2_full/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM continuumio/miniconda3:4.1.11
2+
3+
MAINTAINER Robert Cohn <[email protected]>
4+
5+
ENV ACCEPT_INTEL_PYTHON_EULA=yes
6+
7+
RUN conda config --add channels intel \
8+
&& conda create -y -q -n idp intelpython2_full=2017.0.0 python=2
9+
10+
ENV PATH /opt/conda/envs/idp/bin:$PATH

idp2_full/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docker_repo.README.md

idp3_core/README.md

Lines changed: 0 additions & 1 deletion
This file was deleted.

idp3_core/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docker_repo.README.md

idp3_full/Dockerfile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
FROM continuumio/miniconda3:4.1.11
2+
3+
MAINTAINER Robert Cohn <[email protected]>
4+
5+
ENV ACCEPT_INTEL_PYTHON_EULA=yes
6+
7+
RUN conda config --add channels intel \
8+
&& conda create -y -q -n idp intelpython3_full=2017.0.0 python=3
9+
10+
ENV PATH /opt/conda/envs/idp/bin:$PATH

idp3_full/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
docker_repo.README.md

tests/test_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ def do_build(dir):
1515
subprocess.check_call('docker run -t %s python -c 1' % tag ,shell=True)
1616

1717
def test_builds():
18-
for dir in ['idp2_core','idp3_core']:
18+
for dir in ['idp2_core','idp3_core','idp2_full','idp3_full']:
1919
do_build(dir)

0 commit comments

Comments
 (0)