blob: e59d26747bee078f85e87c40e7ed7950e8b3905a [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
Shad Ansari1dcfdb32022-01-24 23:13:06 +00008EXPOSE 3333
Shad Ansari25c4fad2022-01-25 21:05:42 +00009CMD [ "python3", "./networkdiag.py"]
Shad Ansari0a1d6072022-01-25 04:00:23 +000010
11