9 lines
327 B
Docker
9 lines
327 B
Docker
|
# This dockerfile is meant to serve as a rocm base image. It registers the debian rocm package repository, and
|
||
|
# installs the rocm-dev package.
|
||
|
|
||
|
FROM mambaorg/micromamba
|
||
|
WORKDIR /content/
|
||
|
COPY env.yml /home/micromamba/env.yml
|
||
|
RUN apt update && apt install xorg -y
|
||
|
RUN micromamba install -y -n base -f /home/micromamba/env.yml
|