Skip to content
Snippets Groups Projects
Commit bf62341c authored by liyingjun's avatar liyingjun
Browse files

Add missing uwsgi for barbican-api Dockerfile

uwsgi is not installed for barbican-api in ubuntu.

Change-Id: Ibaaf7eb9dfae2f88a5a2d9c3b4983d403e52c932
Closes-bug: #1632170
parent b13b0aad
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,10 @@ MAINTAINER {{ maintainer }} ...@@ -9,7 +9,10 @@ MAINTAINER {{ maintainer }}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
{% set barbican_api_packages = ['openstack-barbican-api'] %} {% set barbican_api_packages = ['openstack-barbican-api'] %}
{% elif base_distro in ['ubuntu'] %} {% elif base_distro in ['ubuntu'] %}
{% set barbican_api_packages = ['barbican-api'] %} {% set barbican_api_packages = [
'uwsgi-plugin-python',
'barbican-api'
] %}
{% endif %} {% endif %}
{{ macros.install_packages(barbican_api_packages | customizable("packages")) }} {{ macros.install_packages(barbican_api_packages | customizable("packages")) }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment