From 2bc17298d710caf9894c4420097e3520e70c882e Mon Sep 17 00:00:00 2001 From: Harish Anand Date: Wed, 10 Oct 2018 13:13:45 -0700 Subject: [PATCH] Fix: pg_isready command not found error Signed-off-by: Harish Anand --- dockerfiles/django/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfiles/django/Dockerfile b/dockerfiles/django/Dockerfile index c19672f..3295528 100644 --- a/dockerfiles/django/Dockerfile +++ b/dockerfiles/django/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /code ADD requirements.txt /code/ RUN pip install -r requirements.txt RUN apt-get update +RUN apt-get install -y apt-utils RUN apt-get install -y vim RUN apt-get install -y dnsutils imagemagick inkscape RUN pip install django-adminplus