Merge "ansible: add functionality to copy custom config files to target node"
[barometer.git] / docker / barometer-ves / Dockerfile
1 # Copyright 2018 Intel Corporation and OPNFV
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 FROM centos:7
16 RUN yum update -y && \
17     yum install -y epel-release \
18                    git \
19                    nc
20
21 RUN yum install -y python-pip
22 RUN pip install pyyaml \
23                 kafka-python
24
25
26 ENV VES_DIR /opt/ves
27 ENV REPOS_DIR /src
28
29 RUN mkdir -p ${VES_DIR}/yaml
30 RUN mkdir -p ${VES_DIR}/config
31 WORKDIR ${REPOS_DIR}
32 RUN git clone https://gerrit.opnfv.org/gerrit/barometer
33 COPY ./start_ves_app.sh ${VES_DIR}/
34 RUN cp -rf barometer/3rd_party/collectd-ves-app/ves_app/* ${VES_DIR}
35 WORKDIR ${VES_DIR}
36 RUN chmod 755 ${VES_DIR}/start_ves_app.sh
37
38 ENTRYPOINT ["./start_ves_app.sh"]
39 CMD ["host.yaml"]