From 3633372b7232bcddc455f92cadc4082f1be7f199 Mon Sep 17 00:00:00 2001 From: Max Sokolski Date: Tue, 21 Nov 2023 13:38:18 +0200 Subject: [PATCH] chore: install pkg-config for PyMySQL compatibility (#27) 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 ######