From 14e235d61a68cf00d0ba524c66fd41b1cbb1823c Mon Sep 17 00:00:00 2001 From: Luke Repko Date: Tue, 6 Aug 2024 14:36:36 -0500 Subject: [PATCH] fix: memcache is required by keystone --- Containerfiles/GnocchiRXT-Containerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Containerfiles/GnocchiRXT-Containerfile b/Containerfiles/GnocchiRXT-Containerfile index 7c4b8f0d..a2b8a5cc 100644 --- a/Containerfiles/GnocchiRXT-Containerfile +++ b/Containerfiles/GnocchiRXT-Containerfile @@ -20,8 +20,6 @@ RUN apt install -y \ libpq-dev \ postgresql \ memcached \ - mysql-client \ - mysql-server \ librados-dev \ liberasurecode-dev \ python3-rados \ @@ -29,5 +27,7 @@ RUN apt install -y \ libsnappy-dev \ libprotobuf-dev RUN curl -sS https://bootstrap.pypa.io/get-pip.py | python3.10 -RUN pip install "gnocchi[postgresql,ceph,keystone] @ git+https://github.com/gnocchixyz/gnocchi.git@${GNOCCHI_VERSION}" +RUN pip install \ + "gnocchi[postgresql,ceph,keystone] @ git+https://github.com/gnocchixyz/gnocchi.git@${GNOCCHI_VERSION}" \ + "memcache" RUN adduser gnocchi --disabled-password