![Marcin Juszkiewicz](/assets/img/avatar_default.png)
Big patch drops all mentions of binary images support. Suggestions are welcome how to split it into parts or handle better. Change-Id: I5d5a46c6ce7734ceb8b844e17b43e359d7cac6e3
20 lines
554 B
Django/Jinja
20 lines
554 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}swift-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block swift_proxy_server_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% set swift_proxy_server_pip_packages = [
|
|
'ceilometermiddleware'
|
|
] %}
|
|
|
|
RUN {{ macros.install_pip(swift_proxy_server_pip_packages | customizable("pip_packages")) }}
|
|
|
|
{% block swift_proxy_server_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
|
|
USER swift
|