💻 Тестовое для ТрейдСофт
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test-tradesoft/templates/fluentd.Dockerfile.j2

15 lines
472 B

FROM fluent/fluentd:edge
USER root
RUN apk add --no-cache --update --virtual .build-deps build-base ruby-dev && \
apk add mariadb-dev mariadb-connector-c mariadb-connector-c-dev && \
gem install mysql2 && \
gem install fluent-plugin-record-modifier && \
gem install fluent-plugin-sql && \
gem sources --clear-all && \
apk del .build-deps && \
rm -rf /tmp/* /var/tmp/* /usr/lib/ruby/gems/*/cache/*.gem
USER fluent