From 752d24177e4eead815c9f8b64b88ef66e47e8735 Mon Sep 17 00:00:00 2001 From: khadkeaakash Date: Mon, 25 Nov 2019 10:42:56 -0500 Subject: [PATCH] Adding Dockerfile to create image --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..31590b5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM frolvlad/alpine-python2 + +COPY AndroLabServer / + +RUN pip2 install flask +RUN pip2 install flask-sqlalchemy +RUN pip2 install simplejson +RUN pip2 install cherrypy +RUN pip2 install web.py + +CMD [ "python", "app.py" ]