
This PS updates all dockerfiles to allow base image over-rides as required by many consumers of OSH. Change-Id: I53daac9c1ec4707628565abc912116d8997eba16 Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
12 lines
321 B
Docker
12 lines
321 B
Docker
ARG FROM=docker.io/fluent/fluentd-kubernetes-daemonset:v1.10.1-debian-elasticsearch7-1.0
|
|
FROM ${FROM}
|
|
|
|
RUN set -ex; \
|
|
apt-get update; \
|
|
apt-get install -y gcc make; \
|
|
gem install \
|
|
fluent-plugin-kafka \
|
|
fluent-plugin-systemd:1.0.1 \
|
|
fluent-plugin-prometheus; \
|
|
apt-get purge -y gcc make
|