Skip to content

Instantly share code, notes, and snippets.

@briansp2020
Created February 20, 2025 20:31
Show Gist options
  • Save briansp2020/b7d40a97a6e809e6aa6ebc7d8e61464f to your computer and use it in GitHub Desktop.
Save briansp2020/b7d40a97a6e809e6aa6ebc7d8e61464f to your computer and use it in GitHub Desktop.
Dockerfile-rocm6.3.2
FROM ubuntu:22.04
RUN apt update && apt install -y curl rsync \
&& curl -O https://repo.radeon.com/amdgpu-install/6.3.2/ubuntu/jammy/amdgpu-install_6.3.60302-1_all.deb \
&& dpkg -i amdgpu-install_6.3.60302-1_all.deb \
&& DEBIAN_FRONTEND=noninteractive amdgpu-install --usecase=rocm --no-dkms --no-32 -y
RUN apt install -y git git-lfs pkg-config patchelf nano wget gpg cmake build-essential libgtest-dev \
python3-venv python3-dev python3-wheel python3-setuptools python3-requests python3-packaging python-is-python3 \
&& apt clean
CMD bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment