From cf93195e0f759947f00df40f03b6a4d9ed38ef65 Mon Sep 17 00:00:00 2001 From: Luke Repko Date: Tue, 6 Aug 2024 15:02:32 -0500 Subject: [PATCH] fix: pymemcache is also needed --- Containerfiles/GnocchiRXT-Containerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Containerfiles/GnocchiRXT-Containerfile b/Containerfiles/GnocchiRXT-Containerfile index 3f88ed9b..7db2a3d6 100644 --- a/Containerfiles/GnocchiRXT-Containerfile +++ b/Containerfiles/GnocchiRXT-Containerfile @@ -29,5 +29,6 @@ RUN apt install -y \ 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}" + "gnocchi[postgresql,ceph,keystone] @ git+https://github.com/gnocchixyz/gnocchi.git@${GNOCCHI_VERSION}" \ + "pymemcache" RUN adduser gnocchi --disabled-password