# Copyright 2020-present Open Networking Foundation | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
FROM python:3.7 | |
WORKDIR /usr/src/app | |
COPY requirements.txt ./ | |
RUN pip install --no-cache-dir -r requirements.txt | |
COPY edge_monitoring_server.py ./ | |
COPY edge_maintenance_agent.py ./ | |
CMD ["python", "edge_monitoring_server.py"] |