santanude | c82167d | 2021-10-21 17:42:34 +0530 | [diff] [blame^] | 1 | # Original work Copyright 2017-2018 AT&T Intellectual Property, Inc |
| 2 | # Modified work Copyright 2021 Xoriant Corporation |
| 3 | |
santanude | e1169f5 | 2021-05-13 20:11:38 +0530 | [diff] [blame] | 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
santanude | c82167d | 2021-10-21 17:42:34 +0530 | [diff] [blame^] | 7 | # |
santanude | e1169f5 | 2021-05-13 20:11:38 +0530 | [diff] [blame] | 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
santanude | c82167d | 2021-10-21 17:42:34 +0530 | [diff] [blame^] | 9 | # |
santanude | e1169f5 | 2021-05-13 20:11:38 +0530 | [diff] [blame] | 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | # |
| 16 | # What this is: A Dockerfile for building an OPFNV VES Collector container image. |
| 17 | # |
| 18 | # Status: this is a work in progress, under test. |
| 19 | # |
| 20 | |
santanude | f22d9b5 | 2021-07-27 15:43:30 +0530 | [diff] [blame] | 21 | FROM ubuntu:focal |
santanude | e1169f5 | 2021-05-13 20:11:38 +0530 | [diff] [blame] | 22 | |
santanude | f22d9b5 | 2021-07-27 15:43:30 +0530 | [diff] [blame] | 23 | RUN apt-get update && apt-get -y upgrade |
| 24 | RUN apt-get install -y git curl python3 python3-pip |
santanude | c82167d | 2021-10-21 17:42:34 +0530 | [diff] [blame^] | 25 | RUN pip3 install requests jsonschema elasticsearch kafka-python |
| 26 | |
santanude | e1169f5 | 2021-05-13 20:11:38 +0530 | [diff] [blame] | 27 | |
| 28 | RUN mkdir /opt/ves |
| 29 | |
santanude | f22d9b5 | 2021-07-27 15:43:30 +0530 | [diff] [blame] | 30 | # Clone VES Collector |
santanude | e1169f5 | 2021-05-13 20:11:38 +0530 | [diff] [blame] | 31 | RUN mkdir /opt/ves/evel-test-collector |
| 32 | ADD evel-test-collector /opt/ves/evel-test-collector |
| 33 | |
| 34 | COPY Dashboard.json /opt/ves/Dashboard.json |
| 35 | COPY start.sh /opt/ves/start.sh |
| 36 | ENTRYPOINT ["/bin/bash", "/opt/ves/start.sh"] |