Fix python3's new annoying venv requirement
This commit is contained in:
parent
24c061f48e
commit
94e8042404
2 changed files with 5 additions and 0 deletions
|
@ -21,6 +21,9 @@ WORKDIR /
|
||||||
|
|
||||||
# Install AppImage Builder
|
# Install AppImage Builder
|
||||||
RUN apt-get install -y python3-pip
|
RUN apt-get install -y python3-pip
|
||||||
|
WORKDIR /root/.config/pip
|
||||||
|
ADD pip.conf
|
||||||
|
WORKDIR /
|
||||||
RUN python3 -m pip install --upgrade pip
|
RUN python3 -m pip install --upgrade pip
|
||||||
RUN pip3 install appimage-builder
|
RUN pip3 install appimage-builder
|
||||||
|
|
||||||
|
|
2
DebianBuilder/pip.conf
Normal file
2
DebianBuilder/pip.conf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[global]
|
||||||
|
break-system-packages = true
|
Loading…
Add table
Add a link
Reference in a new issue