Created
November 15, 2023 17:20
-
-
Save briansp2020/fd1579b3d7fe4643409593e229fbd26f to your computer and use it in GitHub Desktop.
ROCm 5.7.1 Docker file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:22.04 | |
RUN apt update && apt install -y curl \ | |
&& curl -O https://repo.radeon.com/amdgpu-install/5.7.1/ubuntu/jammy/amdgpu-install_5.7.50701-1_all.deb \ | |
&& dpkg -i amdgpu-install_5.7.50701-1_all.deb \ | |
&& DEBIAN_FRONTEND=noninteractive amdgpu-install --usecase=rocm --no-dkms --no-32 -y \ | |
&& apt install -y git git-lfs pkg-config patchelf nano wget gpg cmake build-essential \ | |
python3-venv python3-dev python3-wheel python3-setuptools python3-requests python3-packaging \ | |
&& apt clean | |
CMD bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment