ROCm-docker/push_all.sh
Jithun Nair 4f2241c1a8
Add Almalinux dockerfile for manylinux2_28 builds (#133)
* Adding almalinux-8 dockerfile

* Install multi-install versioned ROCm

* Bug

* Install python (needed by Magma install) and python3-dev (needed to be able to run PyTorch in compile mode when testing PyTorch wheels in resulting docker image)

* yum cannot find python3-dev on almalinux

* Use ln since no 'python' package exists

* Move python link creation to ensure it persists

* Don't install python link here; we will do it in manylinux image since it's only really needed for Magma build currently

* comment

* Add almalinux image creation to build_all.sh

* Push almalinux8 image

* Add Devtoolset 11 paths

(cherry picked from commit 5126740ec09bf0b86d0c4edace90dd317ca9e244)

---------

Co-authored-by: Pruthvi Madugundu <pruthvigithub@gmail.com>
2024-07-17 14:49:01 -05:00

34 lines
881 B
Bash
Executable File

ROCM_VERSION=6.1.2
# ubuntu 20.04 base
docker push rocm/dev-ubuntu-20.04:$ROCM_VERSION
docker push rocm/dev-ubuntu-20.04:latest
# ubuntu 22.04 base
docker push rocm/dev-ubuntu-22.04:$ROCM_VERSION
docker push rocm/dev-ubuntu-22.04:latest
# centos base
docker push rocm/dev-centos-7:$ROCM_VERSION
docker push rocm/dev-centos-7:latest
# rocm terminal base
docker push rocm/rocm-terminal:$ROCM_VERSION
docker push rocm/rocm-terminal:latest
# manylinux2014 base
docker push rocm/dev-manylinux2014_x86_64:$ROCM_VERSION
docker push rocm/dev-manylinux2014_x86_64:latest
# ubuntu20.04 complete
docker push rocm/dev-ubuntu-20.04:$ROCM_VERSION-complete
# ubuntu22.04 complete
docker push rocm/dev-ubuntu-22.04:$ROCM_VERSION-complete
# centos complete
docker push rocm/dev-centos-7:$ROCM_VERSION-complete
# almalinux8 complete
docker push rocm/dev-almalinux-8:$ROCM_VERSION-complete