Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
fail-fast: false
matrix:
include:
- IDP_CONF: intelpython3_core
- IDP_CONF: intelpython3_full
steps:
- uses: actions/checkout@v2
Expand Down
14 changes: 0 additions & 14 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,26 +22,12 @@ jobs:
username: ${{ secrets.DOCKER_LOGIN_USERNAME }}
password: ${{ secrets.DOCKER_LOGIN_PASSWORD }}

- name: Extract intelpython3_core metadata (tags, labels) for Docker
id: meta_core
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: intelpython/intelpython3_core

- name: Extract intelpython3_full metadata (tags, labels) for Docker
id: meta_full
uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
with:
images: intelpython/intelpython3_full

- name: Build and push Docker image for intelpython3_core
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
context: configs/intelpython3_core
push: true
tags: ${{ steps.meta_core.outputs.tags }}
labels: ${{ steps.meta_core.outputs.labels }}

- name: Build and push Docker image for intelpython3_full
uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
with:
Expand Down
31 changes: 0 additions & 31 deletions configs/intelpython3_core/Dockerfile

This file was deleted.

35 changes: 0 additions & 35 deletions configs/intelpython3_core/README.md

This file was deleted.

3 changes: 0 additions & 3 deletions configs/intelpython3_core/docker-compose.test.yml

This file was deleted.

7 changes: 0 additions & 7 deletions configs/intelpython3_core/hooks/post_push

This file was deleted.

8 changes: 4 additions & 4 deletions configs/intelpython3_full/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

FROM continuumio/miniconda3
FROM condaforge/mambaforge


RUN conda config --add channels intel
RUN conda install -y -q intelpython3_full=2023.1
RUN conda config --add channels https://software.repos.intel.com/python/conda
RUN conda config --add channels conda-forge
RUN conda install -y -q intelpython3_full=2025.0 python=3.12
RUN conda clean --all
5 changes: 2 additions & 3 deletions configs/intelpython3_full/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ The image defaults to starting with a bash shell. Intel Python is on the path. T

Images:

* intelpython3_core
* intelpython3_full

You usually want the 'latest' tag, but the docker image tag can be used to request a specific package. For example:

docker pull intelpython3_core:2017.0.3-1
docker pull intelpython3_full:2017.0.3-1

Will get an image that uses the conda package: intelpython3_core-2017.0.3-1
Will get an image that uses the conda package: intelpython3_full-2017.0.3-1

Tags:

Expand Down
5 changes: 2 additions & 3 deletions tpls/tpl.README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ The image defaults to starting with a bash shell. Intel Python is on the path. T

Images:

* intelpython3_core
* intelpython3_full

You usually want the 'latest' tag, but the docker image tag can be used to request a specific package. For example:

docker pull intelpython3_core:2017.0.3-1
docker pull intelpython3_full:2017.0.3-1

Will get an image that uses the conda package: intelpython3_core-2017.0.3-1
Will get an image that uses the conda package: intelpython3_full-2017.0.3-1

Tags:

Expand Down
Loading