Fix python3's new annoying venv requirement

This commit is contained in:
zontreck 2024-07-23 17:31:30 -07:00
parent 24c061f48e
commit 94e8042404
2 changed files with 5 additions and 0 deletions

View file

@ -21,6 +21,9 @@ WORKDIR /
# Install AppImage Builder
RUN apt-get install -y python3-pip
WORKDIR /root/.config/pip
ADD pip.conf
WORKDIR /
RUN python3 -m pip install --upgrade pip
RUN pip3 install appimage-builder

2
DebianBuilder/pip.conf Normal file
View file

@ -0,0 +1,2 @@
[global]
break-system-packages = true