From c405502242ec02b112b1cdb2a440ca65b669cb83 Mon Sep 17 00:00:00 2001 From: Max Sokolski Date: Mon, 20 Nov 2023 19:40:35 +0200 Subject: [PATCH] chore: install pkg-config for PyMySQL compatibility Upstream commit: https://github.com/openedx/xqueue/commit/fe8c57b03e68e209fbd286be98f489addac04382 Signed-off-by: Max Sokolski --- tutorxqueue/templates/xqueue/build/xqueue/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile b/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile index 0c48247..7ee46f6 100644 --- a/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile +++ b/tutorxqueue/templates/xqueue/build/xqueue/Dockerfile @@ -7,7 +7,7 @@ RUN {% if is_buildkit_enabled() %}--mount=type=cache,target=/var/cache/apt,shari --mount=type=cache,target=/var/lib/apt,sharing=locked{% endif %} \ apt update && \ apt upgrade -y && \ - apt install -y language-pack-en git python3 python3-pip python3-venv libmysqlclient-dev + apt install -y language-pack-en git python3 python3-pip python3-venv libmysqlclient-dev pkg-config RUN ln -s /usr/bin/python3 /usr/bin/python ###### Git-clone xqueue repo ######