CI: Add SonarCloud scan GHA workflow
[smo/ves.git] / collector / Dockerfile
1 # Original work Copyright 2017-2018 AT&T Intellectual Property, Inc
2 # Modified work Copyright 2021 Xoriant Corporation
3
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
7 #
8 # http://www.apache.org/licenses/LICENSE-2.0
9 #
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
21 FROM ubuntu:focal
22
23 RUN apt-get update && apt-get -y upgrade
24 RUN apt-get install -y git curl python3 python3-pip
25
26 COPY pip.conf /etc/pip.conf
27
28 RUN pip3 install requests jsonschema kafka-python gevent PyYAML
29
30 RUN mkdir -p /opt/smo/certs
31
32 # Clone VES Collector
33 RUN mkdir /opt/smo/evel-test-collector
34 ADD evel-test-collector /opt/smo/evel-test-collector
35
36
37 COPY start.sh /opt/smo/start.sh
38
39 ENTRYPOINT ["/bin/bash", "/opt/smo/start.sh"]