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

Commit e35c55d

Browse files
adding in changes for 2019 update 3 (#13)
1 parent 4781540 commit e35c55d

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

configs/intelpython2_core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MAINTAINER Robert Cohn <[email protected]>
3131
ENV ACCEPT_INTEL_PYTHON_EULA=yes
3232

3333
RUN conda config --add channels intel\
34-
&& conda install -y -q intelpython2_core=2019.1 python=2 \
34+
&& conda install -y -q intelpython2_core=2019.3 python=2 \
3535
&& conda clean --all \
3636
&& apt-get update -qqq \
3737
&& apt-get install -y -q g++ \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

3-
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.1
4-
docker push $DOCKER_REPO:2019.1
3+
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.3
4+
docker push $DOCKER_REPO:2019.3
55

66
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:latest
77
docker push $DOCKER_REPO:latest

configs/intelpython2_full/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MAINTAINER Robert Cohn <[email protected]>
3131
ENV ACCEPT_INTEL_PYTHON_EULA=yes
3232

3333
RUN conda config --add channels intel\
34-
&& conda install -y -q intelpython2_full=2019.1 python=2 \
34+
&& conda install -y -q intelpython2_full=2019.3 python=2 \
3535
&& conda clean --all \
3636
&& apt-get update -qqq \
3737
&& apt-get install -y -q g++ \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

3-
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.1
4-
docker push $DOCKER_REPO:2019.1
3+
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.3
4+
docker push $DOCKER_REPO:2019.3
55

66
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:latest
77
docker push $DOCKER_REPO:latest

configs/intelpython3_core/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MAINTAINER Robert Cohn <[email protected]>
3131
ENV ACCEPT_INTEL_PYTHON_EULA=yes
3232

3333
RUN conda config --add channels intel\
34-
&& conda install -y -q intelpython3_core=2019.1 python=3 \
34+
&& conda install -y -q intelpython3_core=2019.3 python=3 \
3535
&& conda clean --all \
3636
&& apt-get update -qqq \
3737
&& apt-get install -y -q g++ \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

3-
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.1
4-
docker push $DOCKER_REPO:2019.1
3+
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.3
4+
docker push $DOCKER_REPO:2019.3
55

66
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:latest
77
docker push $DOCKER_REPO:latest

configs/intelpython3_full/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ MAINTAINER Robert Cohn <[email protected]>
3131
ENV ACCEPT_INTEL_PYTHON_EULA=yes
3232

3333
RUN conda config --add channels intel\
34-
&& conda install -y -q intelpython3_full=2019.1 python=3 \
34+
&& conda install -y -q intelpython3_full=2019.3 python=3 \
3535
&& conda clean --all \
3636
&& apt-get update -qqq \
3737
&& apt-get install -y -q g++ \
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#! /bin/bash
22

3-
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.1
4-
docker push $DOCKER_REPO:2019.1
3+
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:2019.3
4+
docker push $DOCKER_REPO:2019.3
55

66
docker tag $DOCKER_REPO:$DOCKER_TAG $DOCKER_REPO:latest
77
docker push $DOCKER_REPO:latest

images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def __init__(self,pyver=None,package=None,build_number=None,name=None):
7777
self['package'] = package
7878
# github tag & docker tag is update_number-build_number, e.g. 2017.0.1-1
7979
# conda package spec is update_number=build_number, e.g. intelpython2_core=2017.0.1=1
80-
self['update_number'] = '2019.1'
80+
self['update_number'] = '2019.3'
8181
if build_number:
8282
self['build_number'] = '=' + str(build_number)
8383

0 commit comments

Comments
 (0)