From 27f354f8418529011224396b7f8f33594c74fbcf Mon Sep 17 00:00:00 2001 From: Erwin Ried <1091420+eried@users.noreply.github.com> Date: Tue, 16 Feb 2021 09:49:48 +0100 Subject: [PATCH] Latest pip broken https://stackoverflow.com/questions/65896334/python-pip-broken-wiith-sys-stderr-writeferror-exc --- dockerfile-nogit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfile-nogit b/dockerfile-nogit index 114b6bc8c..580d4115d 100644 --- a/dockerfile-nogit +++ b/dockerfile-nogit @@ -15,7 +15,7 @@ RUN apt-get update && \ apt-get -qy autoremove #Install current pip from PyPa -RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \ +RUN curl https://bootstrap.pypa.io/3.4/get-pip.py -o get-pip.py && \ python3 get-pip.py #Fetch additional dependencies from Python 3.x pip @@ -38,4 +38,4 @@ RUN mkdir ~/bin && cd ~/bin && \ for tool in gcc g++ cpp c++;do ln -s $(which ccache) arm-none-eabi-$tool;done CMD cd .. && cd build && \ - cmake .. && make firmware \ No newline at end of file + cmake .. && make firmware