mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2024-12-11 08:16:18 +01:00
54d99490a9
set the transformer version to huggingface added the default run command
11 lines
358 B
Docker
11 lines
358 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 . /content/
|
|
RUN ls
|
|
RUN micromamba install -y -n base -f /content/environments/huggingface.yml
|
|
USER root
|
|
RUN apt update && apt install xorg -y
|
|
CMD python aiserver.py |