From 467e1dac4643eb9bf13fdb7b470e3ace8921ce22 Mon Sep 17 00:00:00 2001 From: Zhonghui Hu Date: Thu, 30 Sep 2021 16:13:50 -0700 Subject: [PATCH] Build image with release mode rather than debug mode --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 10f9f7559..b1cade9f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ WORKDIR /tmp/fluent-bit-$FLB_VERSION/ RUN git clone https://github.com/zhonghui12/fluent-bit.git /tmp/fluent-bit-$FLB_VERSION/ WORKDIR /tmp/fluent-bit-$FLB_VERSION/build/ RUN git fetch origin && git checkout custom-1.8.7 && git status -RUN cmake -DFLB_DEBUG=On \ +RUN cmake -DFLB_RELEASE=On \ -DFLB_TRACE=Off \ -DFLB_JEMALLOC=On \ -DFLB_TLS=On \