# | |
# SPDX-FileCopyrightText: 2022-present Intel Corporation | |
# SPDX-FileCopyrightText: 2020-present Open Networking Foundation <info@opennetworking.org> | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
FROM ubuntu:18.04 | |
ADD . / | |
RUN set -xe \ | |
&& apt-get update -y \ | |
&& apt-get install -y python3-pip | |
RUN pip3 install --upgrade pip | |
RUN pip3 install -r requirements.txt | |
EXPOSE 3333 | |
ENTRYPOINT [ "python3", "./app.py"] |