From a3a20f4cdbbac1edbaab173633a4368590e289be Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Wed, 24 Jan 2024 13:05:04 +0530 Subject: [PATCH] Repalce python-memcached with pymemcache (#682) * Repalce python-memcached with pylibmc Fixes #665 * Replace 2nd instance of python-memcached. * Use pure python implementation in pymemcache --- web/Dockerfile | 2 +- web/Dockerfile.dev | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/web/Dockerfile b/web/Dockerfile index eb673a8..63ba3c5 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/root/.cache \ typing \ xapian-haystack \ django-auth-ldap \ - python-memcached \ + pymemcache \ diskcache \ django-utils-six \ tzdata \ diff --git a/web/Dockerfile.dev b/web/Dockerfile.dev index c9edb69..a65fa83 100644 --- a/web/Dockerfile.dev +++ b/web/Dockerfile.dev @@ -28,8 +28,8 @@ RUN --mount=type=cache,target=/root/.cache \ mysqlclient \ xapian-haystack \ django-auth-ldap \ - python-memcached \ - tzdata \ + pymemcache \ + tzdata \ diskcache \ django-utils-six \ && python3 -m pip install --break-system-packages -U 'Django<4.2' \