blob: 6da722d3ee51b5223bf795bd6cc2e8828620ec96 [file] [log] [blame]
Shad Ansari0a1d6072022-01-25 04:00:23 +00001FROM ubuntu:18.04
2ADD . /
3RUN set -xe \
4 && apt-get update -y \
5 && apt-get install -y python3-pip
6RUN pip3 install --upgrade pip
7RUN pip3 install -r requirements.txt
8RUN pip3 install flask
9RUN pip3 install flask_restful
Shad Ansari1dcfdb32022-01-24 23:13:06 +000010EXPOSE 3333
11CMD [ "python", "./networkdiag.py"]
Shad Ansari0a1d6072022-01-25 04:00:23 +000012
13