Unverified Commit 6be85674 authored by Paul Fultz II's avatar Paul Fultz II Committed by GitHub
Browse files

Check the dockerfile installed the dependencies correctly (#920)

parent 0d2606bb
...@@ -57,6 +57,7 @@ ADD rbuild.ini /rbuild.ini ...@@ -57,6 +57,7 @@ ADD rbuild.ini /rbuild.ini
COPY ./tools/install_prereqs.sh / COPY ./tools/install_prereqs.sh /
RUN /install_prereqs.sh /usr/local / && rm /install_prereqs.sh RUN /install_prereqs.sh /usr/local / && rm /install_prereqs.sh
RUN test -f /usr/local/hash || exit 1
# Install yapf # Install yapf
RUN pip3 install yapf==0.28.0 RUN pip3 install yapf==0.28.0
......
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
# #
# Build MIGraphX prerequisites for docker container # Build MIGraphX prerequisites for docker container
set -e
#install pip3, rocm-cmake, rocblas and miopen #install pip3, rocm-cmake, rocblas and miopen
apt update && apt install -y python3-pip rocm-cmake rocblas miopen-hip openmp-extras apt update && apt install -y python3-pip rocm-cmake rocblas miopen-hip openmp-extras
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment