@@ -0,0 +1,7 @@
+FROM rocm/dev-ubuntu-20.04:4.2
+MAINTAINER Brad King <[email protected]>
+
+ENV PATH="/opt/rocm/bin:$PATH"
+COPY install_deps.sh /root/install_deps.sh
+RUN sh /root/install_deps.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+set -e
+apt-get update
+# Install development tools.
+apt-get install -y --no-install-recommends \
+ g++ \
+ curl \
+ git
+apt-get clean