mirror of
https://github.com/KoboldAI/KoboldAI-Client.git
synced 2025-06-05 21:59:24 +02:00
Updated dockerfiles to create images for docker hub that are per-compiled
This commit is contained in:
@@ -1,11 +1,7 @@
|
|||||||
# This dockerfile is meant to serve as a rocm base image. It registers the debian rocm package repository, and
|
# This dockerfile is meant to serve as a rocm base image. It registers the debian rocm package repository, and
|
||||||
# installs the rocm-dev package.
|
# installs the rocm-dev package.
|
||||||
|
|
||||||
FROM mambaorg/micromamba
|
FROM ebolam/koboldai_base
|
||||||
WORKDIR /content/
|
WORKDIR /content/
|
||||||
COPY . /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
|
CMD python aiserver.py
|
10
docker-cuda/Dockerfile_base
Normal file
10
docker-cuda/Dockerfile_base
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
# 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/huggingface.yml
|
||||||
|
USER root
|
||||||
|
RUN apt update && apt install xorg -y
|
9
docker-cuda/Dockerfile_base_finetune
Normal file
9
docker-cuda/Dockerfile_base_finetune
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
# 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
|
@@ -1,11 +1,7 @@
|
|||||||
# This dockerfile is meant to serve as a rocm base image. It registers the debian rocm package repository, and
|
# This dockerfile is meant to serve as a rocm base image. It registers the debian rocm package repository, and
|
||||||
# installs the rocm-dev package.
|
# installs the rocm-dev package.
|
||||||
|
|
||||||
FROM mambaorg/micromamba
|
FROM ebolam/koboldai_base:finetune
|
||||||
WORKDIR /content/
|
WORKDIR /content/
|
||||||
COPY . /content/
|
COPY . /content/
|
||||||
RUN ls
|
|
||||||
RUN micromamba install -y -n base -f /content/environments/finetuneanon.yml
|
|
||||||
USER root
|
|
||||||
RUN apt update && apt install xorg -y
|
|
||||||
CMD python aiserver.py
|
CMD python aiserver.py
|
Reference in New Issue
Block a user