KoboldAI-Client icon indicating copy to clipboard operation
KoboldAI-Client copied to clipboard

Latest Build fails on podman-docker user socket

Open waffshappen opened this issue 2 years ago • 0 comments

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```

waffshappen avatar Feb 15 '23 23:02 waffshappen