Skip to content

Commit

Permalink
fix: add pkg-config to Dockerfile (#1795)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnagro authored Jul 7, 2023
1 parent 07cb839 commit f4e0fdb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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 \
Expand Down

0 comments on commit f4e0fdb

Please sign in to comment.