From 67563d5a6c69f5c35507cae82d49078021fc5434 Mon Sep 17 00:00:00 2001 From: "Mr. Senko" Date: Sat, 28 Jul 2018 10:34:12 +0300 Subject: [PATCH] Install mariadb client for sqlflush ./manage.py dbshell needs the `mysql` command so install it --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 309ffd0cbb..49c7df6c2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM centos/httpd RUN rpm -Uhv https://dl.fedoraproject.org/pub/epel/7/x86_64/Packages/e/epel-release-7-11.noarch.rpm && \ yum -y --setopt=tsflags=nodocs install centos-release-scl && \ - yum -y --setopt=tsflags=nodocs install rh-python36 gcc mariadb-devel \ + yum -y --setopt=tsflags=nodocs install rh-python36 gcc mariadb-devel mariadb \ libxml2-devel libxslt-devel httpd-devel mod_wsgi mod_ssl npm gettext && \ yum -y update --setopt=tsflags=nodocs && \ yum clean all