mirror of
https://github.com/ROCm/ROCm-docker.git
synced 2025-12-25 06:41:45 +01:00
13 lines
398 B
Docker
13 lines
398 B
Docker
#| This Dockerfile provides a compatibility check for ROCm docker container.
|
|
ARG base_image
|
|
FROM ${base_image}
|
|
|
|
MAINTAINER Peng Sun <peng.sun@amd.com>
|
|
|
|
COPY scripts/compatibility-check.sh /opt/rocm/bin/rocm-compatibility-test.sh
|
|
RUN sudo chmod a+x /opt/rocm/bin/rocm-compatibility-test.sh
|
|
ENTRYPOINT ["/opt/rocm/bin/rocm-compatibility-test.sh"]
|
|
|
|
# Default to a login shell
|
|
CMD ["/bin/bash", "-l"]
|