mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-01-10 23:24:46 +01:00
10 lines
353 B
Plaintext
10 lines
353 B
Plaintext
# 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 environments /content/environments
|
|
RUN micromamba install -y -n base -f /content/environments/finetuneanon.yml
|
|
USER root
|
|
RUN apt update && apt install xorg -y
|