From c50034451cdeba2100f99de5f05c3fee4f161602 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Thu, 24 Aug 2023 15:02:18 +0200 Subject: [PATCH] add another missing dependency --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41a93c8..92f7aea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM fluent/fluentd:v1.16-debian-1 USER root # Prerequisites for GeoIP2 -RUN apt update && apt install -y build-essential libgeoip-dev autoconf && apt-get clean && rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y build-essential libgeoip-dev autoconf libtool && apt-get clean && rm -rf /var/lib/apt/lists/* RUN ["gem", "install", "fluent-plugin-elasticsearch", "fluent-plugin-rewrite-tag-filter", "fluent-plugin-geoip", "--no-document"] USER fluent