blob: 6da722d3ee51b5223bf795bd6cc2e8828620ec96 [file] [log] [blame]
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
RUN pip3 install flask
RUN pip3 install flask_restful
EXPOSE 3333
CMD [ "python", "./networkdiag.py"]