From 4ca898bcd227dc9f118ccfde5700e82392cd4ff6 Mon Sep 17 00:00:00 2001 From: Christopher Brown Date: Thu, 4 Apr 2019 20:34:11 +0100 Subject: [PATCH] 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 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index deb6e78a..6b7811a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 && \