From 9b13ca826fe4e93c7f47a3dfbe8908b9f45009e1 Mon Sep 17 00:00:00 2001 From: "Glenn R. Martin" Date: Fri, 7 Jul 2023 08:40:05 -0400 Subject: [PATCH] chore: `pkg-config` added to Docker File This is to future proof the update of mysql client in future releases. See: https://github.com/edx/edx-arch-experiments/issues/349 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5eeb76fe686..74fc87a0909 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,7 @@ RUN apt update && \ python3-virtualenv \ python3.8-distutils \ libmysqlclient-dev \ + pkg-config \ libssl-dev \ libcairo2-dev && \ rm -rf /var/lib/apt/lists/*