blob: c64c39b53a9c9ce8460fefa9f963dc4a8c16f004 [file] [log] [blame]
Hyunsun Moonf32ae9a2020-05-28 13:17:45 -07001# Copyright 2020-present Open Networking Foundation
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
Andy Bavier4021a2f2020-07-29 12:39:47 -070015FROM python:3.7
Hyunsun Moonf32ae9a2020-05-28 13:17:45 -070016
17WORKDIR /usr/src/app
18COPY requirements.txt ./
19RUN pip install --no-cache-dir -r requirements.txt
20COPY edge_monitoring_server.py ./
Andy Baviercd986902021-04-23 16:50:25 -070021COPY edge_maintenance_agent.py ./
Hyunsun Moonf32ae9a2020-05-28 13:17:45 -070022
23CMD ["python", "edge_monitoring_server.py"]