diff --git a/Dockerfile b/Dockerfile index 88a74ffd3a..0defa963a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,9 @@ MAINTAINER sre@edx.org # python3-pip; install pip to install application requirements.txt files +# pkg-config +# mysqlclient>=2.2.0 requires this (https://github.com/PyMySQL/mysqlclient/issues/620) + # libmysqlclient-dev; to install header files needed to use native C implementation for # MySQL-python for performance gains. @@ -33,6 +36,7 @@ RUN apt-get update && apt-get -qy install --no-install-recommends \ python3.8 \ python3-pip \ python3.8-venv \ + pkg-config \ libmysqlclient-dev \ libssl-dev \ python3-dev \