File tree 3 files changed +9
-4
lines changed
cmd/fluent-watcher/fluentd
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ RUN apk update \
22
22
&& apk add --no-cache --virtual .build-deps \
23
23
build-base linux-headers \
24
24
ruby-dev gnupg \
25
+ bash \
26
+ openssl-dev \
25
27
&& echo 'gem: --no-document' >> /etc/gemrc \
26
28
&& gem install oj -v 3.13.22 \
27
29
&& gem install json -v 2.6.2 \
@@ -35,6 +37,7 @@ RUN apk update \
35
37
&& gem install elasticsearch -v 7.13.3 \
36
38
&& gem install elasticsearch-xpack -v 7.13.3 \
37
39
&& gem install fluent-plugin-detect-exceptions -v 0.0.14 \
40
+ && gem install rdkafka -v 0.19.0 \
38
41
&& gem install \
39
42
fluent-plugin-s3 \
40
43
fluent-plugin-grok-parser \
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ RUN apt-get update \
28
28
ca-certificates \
29
29
&& buildDeps=" \
30
30
make gcc g++ libc-dev \
31
- wget bzip2 gnupg dirmngr \
31
+ wget bzip2 gnupg dirmngr bash openssl build-essential \
32
32
" \
33
33
&& apt-get install -y --no-install-recommends $buildDeps \
34
34
&& echo 'gem: --no-document' >> /etc/gemrc \
@@ -43,6 +43,7 @@ RUN apt-get update \
43
43
&& gem install elasticsearch -v 7.13.3 \
44
44
&& gem install elasticsearch-xpack -v 7.13.3 \
45
45
&& gem install fluent-plugin-detect-exceptions -v 0.0.14 \
46
+ && gem install rdkafka -v 0.19.0 \
46
47
&& gem install \
47
48
fluent-plugin-s3 \
48
49
fluent-plugin-grok-parser \
@@ -63,7 +64,7 @@ RUN apt-get update \
63
64
&& cd /tmp && tar -xjf jemalloc-5.3.0.tar.bz2 && cd jemalloc-5.3.0/ \
64
65
&& ./configure && make \
65
66
&& mv lib/libjemalloc.so.2 /usr/lib \
66
- && apt-get purge -y --auto-remove \
67
+ && apt-get purge -y --allow-remove-essential -- auto-remove \
67
68
-o APT::AutoRemove::RecommendsImportant=false \
68
69
$buildDeps \
69
70
&& rm -rf /var/lib/apt/lists/* \
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ RUN apt-get update \
19
19
ca-certificates \
20
20
&& buildDeps=" \
21
21
make gcc g++ libc-dev \
22
- wget bzip2 gnupg dirmngr\
22
+ wget bzip2 gnupg dirmngr bash openssl build-essential \
23
23
" \
24
24
&& apt-get install -y --no-install-recommends $buildDeps \
25
25
&& echo 'gem: --no-document' >> /etc/gemrc \
@@ -33,6 +33,7 @@ RUN apt-get update \
33
33
&& gem install elasticsearch -v 7.13.3 \
34
34
&& gem install elasticsearch-xpack -v 7.13.3 \
35
35
&& gem install fluent-plugin-detect-exceptions -v 0.0.14 \
36
+ && gem install rdkafka -v 0.19.0 \
36
37
&& gem install \
37
38
fluent-plugin-s3 \
38
39
fluent-plugin-grok-parser \
@@ -52,4 +53,4 @@ RUN apt-get update \
52
53
&& cd /tmp && tar -xjf jemalloc-4.5.0.tar.bz2 && cd jemalloc-4.5.0/ \
53
54
&& ./configure && make \
54
55
&& mv lib/libjemalloc.so.2 /usr/lib \
55
- && echo "plugins installed."
56
+ && echo "plugins installed."
You can’t perform that action at this time.
0 commit comments