33 lines
1.0 KiB
Django/Jinja
33 lines
1.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install https://github.com/mozilla-services/heka/releases/download/v0.10.0/heka-0_10_0-linux-amd64.rpm \
|
|
&& yum clean all \
|
|
&& useradd --user-group heka
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
|
|
RUN curl --location https://github.com/mozilla-services/heka/releases/download/v0.10.0/heka_0.10.0_amd64.deb -o heka_0.10.0_amd64.deb \
|
|
&& dpkg -i heka_0.10.0_amd64.deb \
|
|
&& rm -f heka_0.10.0_amd64.deb
|
|
|
|
{% endif %}
|
|
|
|
COPY plugins/modules /usr/share/heka/lua_modules/
|
|
COPY plugins/decoders /usr/share/heka/lua_decoders/
|
|
COPY plugins/encoders /usr/share/heka/lua_encoders/
|
|
|
|
COPY heka_sudoers /etc/sudoers.d/heka_sudoers
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN usermod -a -G kolla heka \
|
|
&& chmod 440 /etc/sudoers.d/heka_sudoers \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start \
|
|
&& chown -R heka: /usr/share/heka
|
|
|
|
{{ include_footer }}
|
|
|
|
USER heka
|