Add libpq-dev for postgres support

libpq-dev is a requirement for psycopg2 and bindep doesnt
appear to work as expected so adding this to enable builds in the
short term.

Change-Id: I1cf7d697663e0bffee437efd570055f717149755
This commit is contained in:
Christopher Brown 2019-04-04 20:34:11 +01:00
parent e46427a91b
commit 4ca898bcd2
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ FROM ubuntu:16.04
RUN sed -i s/^deb-src.*// /etc/apt/sources.list
RUN apt-get update && apt-get install --yes sudo python python-pip vim git-core && \
RUN apt-get update && apt-get install --yes sudo python python-pip libpq-dev vim git-core && \
pip install --upgrade pip && \
useradd -u 65500 -m rally && \
usermod -aG sudo rally && \