# Build this dockerfile with `docker build -f rocr-deb-dockerfile -t roc/rocr .` # To reduce container rebuild time, place commands least likely to change at top to # most changing at bottom # This builds the radeon open compute runtime FROM ${roct_image_name_deb} MAINTAINER Kent Knox # Following assumes that the apt-get update is already set up to pull from repo.radeon.com in base image RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y \ hsa-rocr-dev && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*