# | |
# SPDX-FileCopyrightText: 2022-present Intel Corporation | |
# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
FROM python:3.6-slim-buster | |
WORKDIR /app | |
COPY requirements.txt requirements.txt | |
RUN pip3 install --upgrade pip | |
RUN pip3 install -r requirements.txt | |
COPY . . | |
EXPOSE 3333 | |
ENTRYPOINT [ "python3", "./network-diag-app.py"] |