Skip to content

Commit

Permalink
cloudkitty-api: make sure that we install packages
Browse files Browse the repository at this point in the history
Debuntu binary images did not got packages installed.

Change-Id: Ie28e8580406f3f805500ed4020895e5e9ebf7c31
(cherry picked from commit a8fcb02)
  • Loading branch information
hrw authored and yoctozepto committed Apr 4, 2022
1 parent 4ac3ae7 commit d8708b7
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions docker/cloudkitty/cloudkitty-api/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build
{% set cloudkitty_api_packages = [
'openstack-cloudkitty-api'
] %}
{{ macros.install_packages(cloudkitty_api_packages | customizable("packages")) }}

{% elif base_package_type == 'deb' %}

{% set cloudkitty_api_packages = [
Expand All @@ -23,12 +21,12 @@ LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build

{% endif %}
{% elif install_type == 'source' %}

{% set cloudkitty_api_packages = [
] %}
{{ macros.install_packages(cloudkitty_api_packages | customizable("packages")) }}
{% endif %}

{{ macros.install_packages(cloudkitty_api_packages | customizable("packages")) }}

COPY extend_start.sh /usr/local/bin/kolla_cloudkitty_extend_start
RUN chmod 755 /usr/local/bin/kolla_cloudkitty_extend_start

Expand Down

0 comments on commit d8708b7

Please sign in to comment.