Files
rocm-systems/projects/rocdecode/docker/rocDecode-on-ubuntu22.dockerfile
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
744 B
Docker
Raw Normal View History

2024-01-10 13:30:55 -05:00
FROM ubuntu:22.04
# install base dependencies
RUN apt-get update -y
#RUN apt-get dist-upgrade -y
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install gcc g++ cmake pkg-config git apt-utils sudo vainfo dialog libstdc++-12-dev
# install ROCm
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install initramfs-tools libnuma-dev wget keyboard-configuration && \
wget https://repo.radeon.com/amdgpu-install/6.1/ubuntu/jammy/amdgpu-install_6.1.60100-1_all.deb && \
2024-02-26 10:27:38 -05:00
sudo apt-get install -y ./amdgpu-install_6.1.60100-1_all.deb && \
2024-03-07 14:17:09 -08:00
sudo amdgpu-install -y --usecase=rocm
2024-01-10 13:30:55 -05:00
WORKDIR /workspace
2024-02-26 10:27:38 -05:00
# install rocDecode package
2025-11-14 13:23:51 -08:00
RUN DEBIAN_FRONTEND=noninteractive sudo apt install -y rocdecode rocdecode-dev rocdecode-test rocdecode-host