Sha256: ecd5d3a4095538abed3c041f82500ae420d9f87ae3d867f80718cb31607b1ea0
Contents?: true
Size: 932 Bytes
Versions: 1
Compression:
Stored size: 932 Bytes
Contents
FROM registry.access.redhat.com/ubi8/ruby-25 ARG VERSION MAINTAINER DataEdge DataEdge@splunk.com LABEL name="Splunk Connect for Kubernetes Metrics Aggregator container" \ maintainer="DataEdge@splunk.com" \ vendor="Splunk Inc." \ version=${VERSION} \ release=${VERSION} \ summary="Splunk Connect for Kubernetes Metrics Aggregator container" \ description="Splunk Connect for Kubernetes Metrics Aggregator container" ENV VERSION=${VERSION} ENV FLUENT_USER fluent USER root COPY licenses /licenses COPY *.gem /tmp/ COPY Gemfile* ./ RUN gem install bundler \ && bundle install \ && bundle exec gem install /tmp/*.gem RUN groupadd -r $FLUENT_USER && \ useradd -r -g $FLUENT_USER $FLUENT_USER && \ mkdir -p /fluentd/log fluentd/etc /fluentd/plugins &&\ chown -R $FLUENT_USER /fluentd && chgrp -R $FLUENT_USER /fluentd USER $FLUENT_USER CMD exec fluentd -c /fluentd/etc/fluent.conf
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-k8s-metrics-agg-1.1.2 | docker/Dockerfile |