Skip to content

Commit 4d12210

Browse files
committed
gnocchi: add python3-rados to gnocchi-base source image
The binary images include python3-rados as a dependency, but source images do not. This change fixes that. Change-Id: I2c8cdfcd25856ecdcfd9f302965187b3b62376ad Closes-Bug: #1927756 (cherry picked from commit c29f818)
1 parent d954d25 commit 4d12210

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docker/gnocchi/gnocchi-base/Dockerfile.j2

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ RUN {{ macros.install_pip(gnocchi_base_pip_packages | customizable("pip_packages
6363
'librados2-devel',
6464
'mod_ssl',
6565
'python3-ldappool',
66-
'python3-mod_wsgi'
66+
'python3-mod_wsgi',
67+
'python3-rados',
6768
] %}
6869

6970
# on x86-64 pip grabs precompiled numpy/scipy - on aarch64/ppc64le
@@ -86,7 +87,8 @@ RUN mkdir -p /var/www/cgi-bin/gnocchi \
8687
'apache2',
8788
'libapache2-mod-wsgi-py3',
8889
'librados-dev',
89-
'python3-ldappool'
90+
'python3-ldappool',
91+
'python3-rados',
9092
] %}
9193

9294
# on x86-64 pip grabs precompiled numpy/scipy - on aarch64/ppc64le

0 commit comments

Comments
 (0)