1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-06-27 00:21:08 +02:00

Update Debian/Ubuntu containers to download lastest version of pip.

This commit is contained in:
David Steele
2017-10-30 09:29:46 -04:00
parent 85b35f30a4
commit f57e376c44
2 changed files with 13 additions and 0 deletions

View File

@ -339,6 +339,9 @@ sub containerBuild
{
$strScript .=
" apt-get update && \\\n" .
" apt-get -y install wget python && \\\n" .
" wget --no-check-certificate -O /root/get-pip.py https://bootstrap.pypa.io/get-pip.py && \\\n" .
" python /root/get-pip.py && \\\n" .
" apt-get -y install openssh-server wget sudo python-pip build-essential git \\\n" .
" libdbd-pg-perl libhtml-parser-perl libio-socket-ssl-perl libxml-libxml-perl";