summaryrefslogtreecommitdiffstats
path: root/fluent-bit/dockerfiles/Dockerfile.centos7
diff options
context:
space:
mode:
Diffstat (limited to 'fluent-bit/dockerfiles/Dockerfile.centos7')
-rw-r--r--fluent-bit/dockerfiles/Dockerfile.centos728
1 files changed, 0 insertions, 28 deletions
diff --git a/fluent-bit/dockerfiles/Dockerfile.centos7 b/fluent-bit/dockerfiles/Dockerfile.centos7
deleted file mode 100644
index daeb49a97..000000000
--- a/fluent-bit/dockerfiles/Dockerfile.centos7
+++ /dev/null
@@ -1,28 +0,0 @@
-# This container image is primarily used to test compilation works for CentOS 7, it is
-# not intended for production usage.
-# Based on https://github.com/fluent/fluent-bit-packaging/tree/master/distros/centos/7
-FROM centos:7
-
-# hadolint ignore=DL3032, DL3033
-RUN yum -y update && \
- yum install -y rpm-build curl ca-certificates gcc gcc-c++ cmake make bash \
- wget unzip systemd-devel wget flex bison \
- cyrus-sasl-lib cyrus-sasl-devel openssl openss-libs openssl-devel \
- postgresql-libs postgresql-devel postgresql-server postgresql libyaml-devel && \
- wget -q http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm && \
- rpm -ivh epel-release-latest-7.noarch.rpm && \
- yum install -y cmake3
-
-COPY . /src/
-WORKDIR /src/build
-
-RUN cmake3 -DCMAKE_INSTALL_PREFIX=/opt/fluent-bit/ -DCMAKE_INSTALL_SYSCONFDIR=/etc/ \
- -DFLB_RELEASE=On -DFLB_TRACE=On \
- -DFLB_TESTS_INTERNAL=On -DFLB_TESTS_RUNTIME=On \
- -DFLB_SQLDB=On -DFLB_HTTP_SERVER=On \
- -DFLB_OUT_KAFKA=On \
- -DFLB_JEMALLOC=On \
- -DFLB_CHUNK_TRACE=On \
- -DFLB_OUT_PGSQL=On ../
-
-RUN make -j "$(getconf _NPROCESSORS_ONLN)"