mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2024-12-11 16:27:01 +01:00
4332074c89
Brings the ROCm container up to a modern standard in line with the CUDA docker.
7 lines
204 B
Docker
7 lines
204 B
Docker
FROM mambaorg/micromamba
|
|
WORKDIR /content/
|
|
COPY env.yml /home/micromamba/env.yml
|
|
RUN micromamba install -y -n base -f /home/micromamba/env.yml
|
|
USER root
|
|
RUN apt update && apt install xorg libsqlite3-0 -y
|