This repository has been archived on 2024-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
fluentd/Dockerfile

7 lines
341 B
Docker
Raw Permalink Normal View History

2023-08-02 10:48:36 +00:00
FROM fluent/fluentd:v1.16-debian-1
USER root
2023-08-24 12:53:02 +00:00
# Prerequisites for GeoIP2
2023-08-24 13:02:18 +00:00
RUN apt update && apt install -y build-essential libgeoip-dev autoconf libtool && apt-get clean && rm -rf /var/lib/apt/lists/*
2023-08-24 12:53:02 +00:00
RUN ["gem", "install", "fluent-plugin-elasticsearch", "fluent-plugin-rewrite-tag-filter", "fluent-plugin-geoip", "--no-document"]
2023-08-02 10:48:36 +00:00
USER fluent