Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
- MAINTAINER {{ maintainer }}
- {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
- RUN yum -y install nginx \
- && yum clean all
- {% elif base_distro in ['debian', 'ubuntu'] %}
- RUN apt-get install -y --no-install-recommends nginx \
- && apt-get clean
- {% endif %}
- COPY ensure_latest_config.sh /usr/local/bin/kolla_ensure_nginx_latest_config
- COPY extend_start.sh /usr/local/bin/kolla_extend_start
- RUN chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_ensure_nginx_latest_config
- {{ include_footer }}
Advertisement
Add Comment
Please, Sign In to add comment