From 91cbaa10962052f5f0dcbc20c538ae8156c52953 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Thu, 21 Mar 2019 13:41:31 -0400 Subject: [PATCH] Install supervisor into the dev environment --- tools/docker-compose/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/docker-compose/Dockerfile b/tools/docker-compose/Dockerfile index 91b06bbfe2..c27c86679f 100644 --- a/tools/docker-compose/Dockerfile +++ b/tools/docker-compose/Dockerfile @@ -11,7 +11,7 @@ RUN yum -y localinstall https://download.postgresql.org/pub/repos/yum/9.4/redhat RUN curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - RUN yum -y update && yum -y install openssh-server ansible mg vim tmux \ - git2u-core mercurial subversion python-devel python36 python36-devel python-psycopg2 make postgresql \ + git2u-core mercurial subversion python-devel python-pip python36 python36-devel python-psycopg2 make postgresql \ postgresql-devel nginx nodejs python-psutil libxml2-devel libxslt-devel \ libstdc++.so.6 gcc cyrus-sasl-devel cyrus-sasl openldap-devel libffi-devel \ xmlsec1-devel swig krb5-devel xmlsec1-openssl xmlsec1 \ @@ -25,7 +25,7 @@ RUN python36 -m ensurepip RUN pip3 install virtualenv RUN /usr/bin/ssh-keygen -q -t rsa -N "" -f /root/.ssh/id_rsa RUN mkdir -p /data/db -RUN pip3 install honcho +RUN pip3 install honcho && pip install supervisor ADD requirements/requirements.txt \ requirements/requirements_git.txt \