KoboldAI-Client
KoboldAI-Client copied to clipboard
Latest Build fails on podman-docker user socket
Since roughly a Week ago building the image fails on podman with the podman user socket.
This essentially boils down to the build container having /home/micromamba owned by root but the installer running as "mambauser".
I have not verified if this is the Intent or if it works under docker directly but i personally fixed it by editing the docker-rocm/Dockerfile to:
WORKDIR /content/
COPY env.yml /home/micromamba/env.yml
USER root
RUN chown -R mambauser: /home/micromamba
USER mambauser
RUN micromamba install -y -n base -f /home/micromamba/env.yml
USER root
RUN apt update && apt install xorg libsqlite3-0 aria2 -y```