-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
57 lines (45 loc) · 1.64 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Make the base image configurable.
ARG BASEIMAGE=centos:7
FROM ${BASEIMAGE}
ENV ES_PATH_CONF=/etc/elasticsearch
USER root
WORKDIR /root
RUN yum install -y make gcc openssl openssl-devel zlib-devel wget ntp epel-release which && \
yum install -y net-tools mlocate patch && \
yum clean all
RUN cd /tmp && \
wget https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.6.tar.gz && \
gzip -d ruby-2.6.6.tar.gz && \
tar -xf ruby-2.6.6.tar && \
rm -f ruby-2.6.6.tar && \
cd ruby-2.6.6 && \
./configure && \
make install
# Install fluentd
RUN yum install -y rubygems
RUN gem install fluentd --no-document
RUN fluentd --setup /etc/fluent
RUN fluent-gem install fluent-plugin-elasticsearch
RUN fluent-gem install fluent-plugin-multi-format-parser
RUN fluent-gem install fluent-plugin-rewrite-tag-filter
RUN gem install oj
# Install elasticsearch
COPY elasticsearch.repo /etc/yum.repos.d/elasticsearch.repo
RUN rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch
RUN yum install -y --enablerepo=elasticsearch elasticsearch
RUN mkdir /etc/elasticsearch/buffers
# Install supervisord
RUN yum install -y python-pip
RUN python -m pip install --upgrade "pip < 21.0"
RUN pip install supervisor
RUN pip install elasticsearch
RUN pip install future
COPY fluent.conf /etc/fluent/fluent.conf
COPY supervisord.conf /etc/supervisord.conf
COPY elasticsearch.yml /etc/elasticsearch/elasticsearch.yml
COPY log.RAWtoESD /tmp/log.RAWtoESD
COPY log.HITtoRDO /tmp/log.HITtoRDO
COPY scripts/scanner.py /root/scanner.py
COPY myPackage /root/myPackage
COPY nonStandardErrors.db /root/nonStandardErrors.db
CMD ["supervisord", "-c", "/etc/supervisord.conf"]