fixed the docker build process by installing pip manually

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

View File

@@ -14,8 +14,13 @@ COPY ./ /havocsrc
#Fetch dependencies from APT
RUN apt-get update && \
apt-get install -y tar wget dfu-util cmake python python-pip && \
apt-get install -y tar wget dfu-util cmake python curl && \
apt-get -qy autoremove
#Install 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 2.x pip
RUN pip install pyyaml