fixed the docker build process by installing pip manually

This commit is contained in:
Yannick M. Dixken 2020-05-15 00:40:24 +02:00
parent 4c60aed563
commit e87a088842
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@ RUN apt-get update && \
apt-get install -y tar wget dfu-util cmake python curl && \
apt-get -qy autoremove
#Install pip from PyPa
#Install current pip from PyPa
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python get-pip.py

View File

@ -14,10 +14,11 @@ RUN apt-get update && \
apt-get install -y git tar wget dfu-util cmake python3 ccache curl && \
apt-get -qy autoremove
#Install pip from PyPa
#Install current pip from PyPa
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python get-pip.py
#Fetch additional dependencies from Python 3.x pip
RUN pip install pyyaml
# Grab the GNU ARM toolchain from arm.com