Skip to content

Commit

Permalink
Merge pull request #149 from edx/michaelroytman/update-Dockerfile-pkg…
Browse files Browse the repository at this point in the history
…-config-mysqlclient-dependency

fix: install pkg-config dependency for mysqlclient>=2.2.0
  • Loading branch information
MichaelRoytman authored Jul 7, 2023
2 parents a364dd4 + 17abfaa commit 61e5c6d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ MAINTAINER [email protected]
# libmysqlclient-dev; to install header files needed to use native C implementation for
# MySQL-python for performance gains.

# pkg-config; mysqlclient>=2.2.0 requires pkg-config (https://github.com/PyMySQL/mysqlclient/issues/620)

# libssl-dev; # mysqlclient wont install without this.

# python3-dev; to install header files for python extensions; much wheel-building depends on this
Expand All @@ -29,6 +31,7 @@ RUN apt-get update && apt-get -qy install --no-install-recommends \
python3.8 \
python3-pip \
libmysqlclient-dev \
pkg-config \
libssl-dev \
python3-dev \
gcc \
Expand Down

0 comments on commit 61e5c6d

Please sign in to comment.