blob: e920d8ac33d81555b82afe8806d68038480fcd32 [file] [log] [blame]
santanude48a84152021-12-09 15:02:27 +05301# Copyright 2021 Xoriant Corporation
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
16FROM ubuntu:focal
17
18RUN apt-get update --fix-missing && apt-get -y upgrade
19RUN apt-get install -y git curl
20
21
22RUN mkdir /opt/ves
23
24RUN mkdir /opt/ves/grafana
25ADD grafana /opt/ves/grafana
26
27
28COPY start.sh /opt/ves/start.sh
29ENTRYPOINT ["/bin/bash", "/opt/ves/start.sh"]